Instructions to use lakshan-bandara/DrapXi-Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lakshan-bandara/DrapXi-Model with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("lakshan-bandara/DrapXi-Model") prompt = "a photo of drapxi style" image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
π DrapXi Cinematic LoRA (SDXL)
Welcome to the official DrapXi Style model. This is a fine-tuned LoRA based on SDXL 1.0, specifically designed to generate high-end cinematic visuals with a unique neon-lit, futuristic aesthetic.
β¨ Model Features
- Artistic Style: Cinematic, Vibrant Neon, Futuristic, and Hyper-realistic.
- Base Model: Stable Diffusion XL 1.0 Base.
- Precision: Trained with high-quality 8k datasets for maximum detail.
π οΈ Usage Guide
To activate the style, you must use the trigger word in your prompt:
Trigger Word:
a photo of drapxi style
π‘ Recommended Settings
- CFG Scale: 7.0 - 9.0
- Steps: 30 - 50
- Sampler: Euler a or DPM++ 2M SDE Karras
- LoRA Weight: 0.8 - 1.0 (Adjust based on how strong you want the effect)
π Example Prompt
a photo of drapxi style, a cyberpunk street in Colombo, rainy night, cinematic lighting, neon signs, 8k resolution, highly detailed
π How to use with Diffusers
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16)
pipe.to("cuda")
pipe.load_lora_weights("big-heroo/DrapXi-Model")
prompt = "a photo of drapxi style, a futuristic car in a neon city, 8k"
image = pipe(prompt).images[0]
image.save("output.png")
- Downloads last month
- 11
Model tree for lakshan-bandara/DrapXi-Model
Base model
stabilityai/stable-diffusion-xl-base-1.0