SD1.5 Oil Painting
Published by @brushstroke_ai · Community adapter
Replicates the look of traditional oil painting with visible brushwork, impasto highlights, and rich tonal depth. Trained on public-domain museum digitisations.
Usage
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("modelforgelab/sd15-oil-painting-lora")
image = pipe("your prompt here").images[0]
image.save("output.png")
Compatibility
- diffusers>=0.20
- Automatic1111