Notes
Notes - notes.io |
Let’s assume we fine-tune Stable Diffusion v1.5 with LoRA using Hugging Face Diffusers.
5.1. Install Dependencies
pip install diffusers transformers accelerate datasets safetensors
pip install xformers # Faster training
5.2. Prepare Dataset with Captions
from datasets import load_dataset
dataset = load_dataset("imagefolder", data_dir="dataset")
print(dataset)
5.3. Set Up Training Script (LoRA)
from diffusers import StableDiffusionPipeline
from peft import LoraConfig
from transformers import AutoTokenizer
from accelerate import Accelerator
model_name = "runwayml/stable-diffusion-v1-5"
tokenizer = AutoTokenizer.from_pretrained(model_name)
lora_config = LoraConfig(
r=16, # Rank of low-rank matrices
lora_alpha=32, # Scaling factor
target_modules=["CrossAttention"],
lora_dropout=0.05
)
from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_pretrained(model_name, torch_dtype="float16").to("cuda")
5.4. Train the Model
accelerate launch train_text_to_image_lora.py
--pretrained_model_name_or_path="runwayml/stable-diffusion-v1-5"
--dataset_name="dataset"
--resolution=512
--train_batch_size=2
--gradient_accumulation_steps=4
--learning_rate=1e-4
--lr_scheduler="constant"
--max_train_steps=5000
--output_dir="lora-trained-model"
5.5. Use the Fine-Tuned Model
from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype="float16"
)
pipe.unet.load_attn_procs("lora-trained-model")
pipe.to("cuda")
prompt = "A futuristic red sports car on Mars, ultra realistic, 8K"
image = pipe(prompt).images[0]
image.save("generated.png")
6. Best Practices
Use LoRA for quick, efficient fine-tuning.
Use DreamBooth if you want personalized objects.
Use gradient checkpointing to save VRAM.
Use mixed-precision (fp16/bf16) to speed up training.
Regularly evaluate outputs during training.
7. Tools to Simplify Fine-Tuning
Hugging Face Diffusers → Best for SD & LoRA
Kohya’s GUI → No-code LoRA & DreamBooth trainer
Automatic1111 WebUI → Popular for testing LoRAs
ComfyUI → Advanced control & pipeline customization
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team
