|
--- |
|
license: other |
|
license_name: flux-1-dev-non-commercial-license |
|
license_link: https://huggingface.co/black-forest-labs/FLUX.1-dev/blob/main/LICENSE.md |
|
language: |
|
- en |
|
tags: |
|
- flux |
|
- diffusers |
|
- lora |
|
base_model: black-forest-labs/FLUX.1-schnell |
|
pipeline_tag: text-to-image |
|
instance_prompt: BLBFSH |
|
library_name: diffusers |
|
inference: |
|
parameters: |
|
width: 1024 |
|
height: 1024 |
|
widget: |
|
- text: >- |
|
DOTTRMSTR illustration. Scene: A charming wooden house sits on a lonely |
|
street, surrounded by nature on a bright and sunny day. The structure exudes |
|
a rustic, inviting vibe, with a thatched roof that adds a traditional and |
|
adventurous touch. The walls are made of thick, uneven logs in various |
|
shades of brown, giving the house an authentic, sturdy appearance. Entrance |
|
details: At the entrance, there'''s a wooden sign carved in the shape of a |
|
whale, hanging by thick ropes, adding a nautical feel to the scene. Next to |
|
the sign, a pair of wooden oars lean against the wall, hinting at the |
|
outdoor adventures that await here. The front entrance is simple yet |
|
welcoming, with a weathered wooden door and a small porch made of uneven |
|
planks. Atmosphere: The street is quiet, lined with tall trees whose |
|
branches filter the sunlight, casting playful shadows on the ground. The sky |
|
is a vibrant blue, with not a cloud in sight, and the air is filled with the |
|
freshness of the outdoors. Wild plants grow around the house, reinforcing |
|
the connection to nature. Additional touches: Adding some extra details, |
|
like an old bicycle leaning against the side of the house or a small |
|
extinguished campfire nearby, can evoke the outdoor lifestyle and |
|
adventurous spirit this place promises. The visual style in these images can |
|
be characterized as highly exaggerated and cartoonish, with a playful use of |
|
perspective and distortion. |
|
example_title: Wooden cabin |
|
output: |
|
url: samples/sample_1.png |
|
- text: A cartoon of BLBFSH |
|
output: |
|
url: images/example_f7z6qh2ud.png |
|
- text: >- |
|
a BLBFSH fish swimming in the ocean. 3D pixar style cartoon movie. Side |
|
camera. |
|
output: |
|
url: images/example_h7gruf2n6.png |
|
|
|
--- |
|
|
|
# Flux Dott Remastered |
|
|
|
Trained on Replicate using: |
|
|
|
https://replicate.com/ostris/flux-dev-lora-trainer/train |
|
|
|
|
|
## Trigger words |
|
You should use `BLBFSH` to trigger the image generation. |
|
|
|
<Gallery /> |
|
|
|
## Use it with the [🧨 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.float16).to('cuda') |
|
pipeline.load_lora_weights('lichorosario/flux-dott-remastered', weight_name='lora.safetensors') |
|
image = pipeline('your prompt').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) |