gigant/oldbookillustrations
Viewer • Updated • 4.15k • 545 • 40
How to use manupm87/finetuned-sd-1.4-oldbookillustrations-lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("manupm87/finetuned-sd-1.4-oldbookillustrations-lora")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]LoRA entrenada sobre CompVis/stable-diffusion-v1-4
con el dataset gigant/oldbookillustrations para
reproducir el estilo de las ilustraciones de libros antiguos.
🔁 Versión de finetuning completo (pipeline entero con la UNet finetuneada):
manupm87/finetuned-sd-1.4-oldbookillustrations.
Trigger de estilo: anade old book illustration, engraving, antique al final del prompt para activar el estilo.
import torch
from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_pretrained(
"CompVis/stable-diffusion-v1-4", torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("manupm87/finetuned-sd-1.4-oldbookillustrations-lora")
prompt = "a lighthouse on a cliff, old book illustration, engraving, antique"
image = pipe(prompt).images[0]
image.save("output.png")
| Parametro | Valor |
|---|---|
| Modelo base | CompVis/stable-diffusion-v1-4 |
| Dataset | gigant/oldbookillustrations (columnas 1600px / info_alt) |
| Metodo | LoRA en la UNet (capas de atencion) |
| Rango / alpha | 16 / 16 |
| Epocas | 3 |
| Learning rate | 0.0001 |
| Batch size | 6 |
| Resolucion | 512x512 |
| Trigger de estilo | old book illustration, engraving, antique |
Generadas con esta LoRA (con el trigger de estilo, misma semilla):
| Prompt | Imagen |
|---|---|
| A sailing ship with billowing sails rides the tall waves of a stormy sea | ![]() |
| A ruined castle stands on a cliff overlooking the misty sea at dusk | ![]() |
| A young girl wanders alone into a forest of tall, twisted trees | ![]() |
| A solitary lighthouse rises above the rocky shore as waves break below it | ![]() |
| A steam locomotive races across the countryside, trailing a long plume of smoke | ![]() |
Base model
CompVis/stable-diffusion-v1-4