--- license: other license_name: bespoke-lora-trained-license license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True tags: - text-to-image - stable-diffusion - lora - diffusers - template:sd-lora - desert - style - dragon - castle - sand - styles - dry base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: ral-sand widget: - text: 'ral-sand, mc donalds worker giving out hamburgers ' output: url: >- 3829224.jpeg - text: 'ral-sand, a man running in the sand ' output: url: >- 3829225.jpeg - text: 'ral-sand, female riding a horse, jumping over an obstacle ' output: url: >- 3829227.jpeg - text: 'ral-sand, a car is driving through a desert ' output: url: >- 3829229.jpeg - text: 'ral-sand, a dragon and a castle ' output: url: >- 3829230.jpeg - text: 'ral-sand, rock climber, climbing a steep mountain ' output: url: >- 3829232.jpeg - text: 'ral-sand, a judge, sitting in court ' output: url: >- 3829234.jpeg --- # Sand Style [SDXL LoRA] ## Model description

SDXL:
Trigger word: ral-sand

☕ Buy me a coffee: https://ko-fi.com/ralfingerai

## Trigger words You should use `ral-sand` to trigger the image generation. ## Download model Weights for this model are available in Safetensors format. [Download](/RalFinger/sand-style-sdxl-lora/tree/main) them in the Files & versions tab. ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) ```py from diffusers import AutoPipelineForText2Image import torch pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda') pipeline.load_lora_weights('RalFinger/sand-style-sdxl-lora', weight_name='ral-sand-sdxl.safetensors') image = pipeline('ral-sand, a judge, sitting in court ').images[0] ``` For more details, including weighting, merging and fusing LoRAs, check the [documentation on loading LoRAs in diffusers](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)