Downloads · 30 days
63
8% of all-time downloads
datnt114/simpletuner-lora
simpletuner-lora is a text-to-image model from datnt114. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as other.
This is a standard PEFT LoRA derived from black-forest-labs/FLUX.1-dev.
Downloads · 30 days
63
8% of all-time downloads
All-time downloads
805
Public
Repo size
1.4 GB
Likes
0
Public
Click a slice to open those files.
.safetensors52.4 MB · 78%
From the Hugging Face model README
This is a standard PEFT LoRA derived from black-forest-labs/FLUX.1-dev.
The main validation prompt used during training was:
An illustration of a serene landscape at night, moonlit mountain scene, tall pine trees on a small island, snow-capped mountains in the background, still lake reflecting trees and full moon, cloud-speckled sky dotted with stars, soft ambient lighting, primary color tones of blue and white, ambient and tranquil atmosphere, high resolution, extremely detailed.
3.00.020None421344x768Note: 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 = 'datnt114/simpletuner-lora'
pipeline = DiffusionPipeline.from_pretrained(model_id)
pipeline.load_lora_weights(adapter_id)
prompt = "An illustration of a serene landscape at night, moonlit mountain scene, tall pine trees on a small island, snow-capped mountains in the background, still lake reflecting trees and full moon, cloud-speckled sky dotted with stars, soft ambient lighting, primary color tones of blue and white, ambient and tranquil atmosphere, high resolution, extremely detailed."
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=20,
generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
width=1344,
height=768,
guidance_scale=3.0,
).images[0]
image.save("output.png", format="PNG")