Pinterest-Style LoRA for Stable Diffusion v1.4
Fine-tuned on a curated dataset of aesthetic Pinterest flatlays, focusing on skincare products, soft lighting, and pastel backgrounds.
Usage
from diffusers import StableDiffusionPipeline
import torch
pipe = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", torch_dtype=torch.float16)
pipe.load_lora_weights("sirineddd/pinterest-stable-diffusion-v1-4")
prompt = "Aesthetic Pinterest-style flatlay of skincare products, pastel background, soft lighting"
image = pipe(prompt, num_inference_steps=30, guidance_scale=7.5).images[0]
image.show()
- Downloads last month
- 2
Model tree for sirineddd/pinterest-stable-diffusion-v1-4
Base model
CompVis/stable-diffusion-v1-4