Instructions to use WiroAI/Rose-Flux-LoRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use WiroAI/Rose-Flux-LoRA with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("WiroAI/Rose-Flux-LoRA") prompt = "rosewiro, a young woman with silky black hair tied into a loose ponytail and striking green eyes. She wears a cozy beige sweater and jeans, sitting by a large window in a sunlit room. A steaming cup of tea rests in her hands as she gazes outside with a serene expression. Ultra-HD, realistic, with intricate details of her hair texture, soft lighting, and the peaceful ambiance of the room." image = pipe(prompt).images[0] - Transformers
How to use WiroAI/Rose-Flux-LoRA with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("WiroAI/Rose-Flux-LoRA", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -41,7 +41,7 @@ This LoRA is trained for anyone who like Rose from Blackpink.
|
|
| 41 |
|
| 42 |
You should use `rosewiro` to trigger the image generation.
|
| 43 |
|
| 44 |
-
## Civitai model link: [civitai](https://civitai.com/models/
|
| 45 |
|
| 46 |
```py
|
| 47 |
from diffusers import FluxPipeline
|
|
|
|
| 41 |
|
| 42 |
You should use `rosewiro` to trigger the image generation.
|
| 43 |
|
| 44 |
+
## Civitai model link: [civitai](https://civitai.com/models/1129221?modelVersionId=1269358)
|
| 45 |
|
| 46 |
```py
|
| 47 |
from diffusers import FluxPipeline
|