File size: 3,355 Bytes
e93986e fb7dce5 e93986e 9c6a63d e93986e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
---
license: other
license_name: bespoke-lora-trained-license
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=False
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- template:sd-lora
- migrated
- drag queen
- makeup
- style
- drag
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: drag style
widget:
- text: 'A drag style barbie is eating spaghetti '
output:
url: >-
44059957.jpeg
- text: 'Marge Simpson drag style '
output:
url: >-
44060029.jpeg
- text: 'Marge Simpson drag style '
output:
url: >-
44060031.jpeg
- text: 'A psychedelic painting of a drag style '
output:
url: >-
44060037.jpeg
- text: 'The Mona Lisa, drag style '
output:
url: >-
44060038.jpeg
- text: 'woman playing the guitar, on stage, singing a song, laser lights, punk rocker drag style '
output:
url: >-
44060044.jpeg
- text: 'Wonderwoman, is a dj at a club, drag style '
output:
url: >-
44060129.jpeg
- text: 'Snoop Dogg drag style '
output:
url: >-
44060130.jpeg
- text: 'The Starry Night drag style '
output:
url: >-
44060139.jpeg
- text: 'The girl with a pearl earring drag style '
output:
url: >-
44060125.jpeg
- text: 'American gothic by Grant Wood drag style '
output:
url: >-
44060137.jpeg
- text: 'Elsa from frozen drag style '
output:
url: >-
44060152.jpeg
- text: 'Gal gadot as Wonderwoman drag style '
output:
url: >-
44060128.jpeg
- text: 'a woman holding a coffee cup, in a beanie, sitting at a cafe drag style '
output:
url: >-
44060126.jpeg
- text: 'scientist woman holding a sign that says ''I LOVE PROMPTS!'' drag style '
output:
url: >-
44060127.jpeg
- text: 'woman with red hair, playing chess at the park, bomb going off in the background, drag style '
output:
url: >-
44060136.jpeg
---
# Drag style [FLUX]
<Gallery />
([CivitAI](https://civitai.com/models/1013817))
## Model description
<p>Drag style Flux LoRA model. LoRA weight in the range of 0.8 to 1.0 seems to work fine.</p><p>Use '<em>drag style</em>' in your prompts as the trigger</p><p>Trained on <a target="_blank" rel="ugc" href="http://astria.ai">astria.ai</a></p>
## Trigger words
You should use `drag style` to trigger the image generation.
## Download model
Weights for this model are available in Safetensors format.
[Download](/Norod78/drag-style-flux/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
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('Norod78/drag-style-flux', weight_name='Flux_Drag-Style_LoRA_1865815.safetensors')
image = pipeline('Marge Simpson drag style').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)
|