--- license: other license_name: bespoke-lora-trained-license license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True tags: - text-to-image - stable-diffusion - lora - diffusers - template:sd-lora - migrated - hair - tool - curly hair - straight hair - slider base_model: runwayml/stable-diffusion-v1-5 instance_prompt: widget: - text: 'close up of the face of a beautiful woman, centered, entire head, bangs ' parameters: negative_prompt: nude, hat, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution output: url: >- 2177470.jpeg - text: 'chewbacca ' parameters: negative_prompt: nude, hat, hand, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution output: url: >- 2177473.jpeg - text: 'jimi hendrix ' parameters: negative_prompt: nude, hat, hand, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution output: url: >- 2177487.jpeg - text: 'photo of donald trump ' parameters: negative_prompt: nude, hat, hand, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution output: url: >- 2177484.jpeg - text: 'photo of a blonde women (with rainbow streaks in her hair:1.1), subtle red lipstick, high detail skin,, burning house behind her , night time, award winning photo , dark eye shadow, big black glasses, cinematic, low light shot, ambient light from fire , (aliens behind her:1.5) ' parameters: negative_prompt: nude, cartoon, cgi, render, illustration, painting, drawing, bad quality, grainy, low resolution, nose ring output: url: >- 2177666.jpeg --- # Curly Hair Slider - LoRA ## Model description ## Download model Weights for this model are available in Safetensors format. [Download](/ostris/curly-hair-slider-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('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda') pipeline.load_lora_weights('ostris/curly-hair-slider-lora', weight_name='curly_hair_slider_v1.safetensors') image = pipeline('photo of a blonde women (with rainbow streaks in her hair:1.1), subtle red lipstick, high detail skin,, burning house behind her , night time, award winning photo , dark eye shadow, big black glasses, cinematic, low light shot, ambient light from fire , (aliens behind her:1.5) ').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)