Downloads · 30 days
50
4% of all-time downloads
FierceVenom2/EmilyFLUX
EmilyFLUX is a text-to-image model from FierceVenom2. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as creativeml-openrail-m.
This is a LoRA derived from black-forest-labs/FLUX.1-dev.
Downloads · 30 days
50
4% of all-time downloads
All-time downloads
1.3K
Public
Repo size
2.9 GB
Likes
0
Public
Click a slice to open those files.
.safetensors52.4 MB · 92%
From the Hugging Face model README
This is a LoRA derived from black-forest-labs/FLUX.1-dev.
The main validation prompt used during training was:
Emily standing in a forest
3.50.030None421024Note: The validation settings are not necessarily the same as the training settings.
You can find some example images in the following gallery:
<Gallery />The text encoder was not trained. You may reuse the base model text encoder for inference.
import torch
from diffusers import DiffusionPipeline
model_id = 'black-forest-labs/FLUX.1-dev'
adapter_id = 'FierceVenom2/EmilyFLUX'
pipeline = DiffusionPipeline.from_pretrained(model_id)
pipeline.load_lora_weights(adapter_id)
prompt = "Emily standing in a forest"
pipeline.to('cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu')
image = pipeline(
prompt=prompt,
num_inference_steps=30,
generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
width=1024,
height=1024,
guidance_scale=3.5,
).images[0]
image.save("output.png", format="PNG")