|
--- |
|
license: other |
|
license_name: flux1dev |
|
tags: |
|
- text-to-image |
|
- diffusers |
|
- lora |
|
- flux |
|
- flux-diffusers |
|
- template:sd-lora |
|
base_model: black-forest-labs/FLUX.1-dev |
|
instance_prompt: None |
|
widget: |
|
- text: anime girl |
|
output: |
|
url: assets/girl.png |
|
- text: a girl on a sailboat |
|
output: |
|
url: assets/boat.png |
|
- text: 1813 rustic rural town with a steam train going through the middle of it, aerial view, bustling, steampunk anime, studio ghibli |
|
output: |
|
url: assets/train.png |
|
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |
|
--- |
|
|
|
<Gallery /> |
|
|
|
## Model description |
|
|
|
Lora trained on the unique style and aesthetic of ghibli retro anime. |
|
|
|
16 rank lora |
|
|
|
## Trigger words |
|
|
|
No trigger word |
|
|
|
|
|
## Use it with the [:firecracker: diffusers library](https://github.com/huggingface/diffusers) |
|
|
|
```py |
|
from diffusers import AutoPipelineForText2Image |
|
import torch |
|
pipeline = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16).to('cuda') |
|
pipeline.load_lora_weights('dataautogpt3/FLUX-AestheticAnime', weight_name='Flux_1_Dev_LoRA_AestheticAnime.safetensors') |
|
image = pipeline('anime girl').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) |
|
|
|
## License |
|
|
|
Please adhere to the licensing terms as described [here](https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md). |