metadata
base_model: stable-diffusion-v1-5/stable-diffusion-v1-5
library_name: diffusers
license: creativeml-openrail-m
inference: true
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- diffusers-training
- lora
widget:
- text: >-
a logo of coffee shop wit a cup of coffee under a framed arch, no text,
modern, minimalist
output:
url: images/example_qsl0b5zx5.png
LoRA text2image fine-tuning - SedatAl/test-test-1
These are LoRA adaption weights for stable-diffusion-v1-5/stable-diffusion-v1-5. The weights were fine-tuned on the logo-wizard/modern-logo-dataset dataset.
How To Use
from diffusers import DiffusionPipeline
pipe = DiffusionPipeline.from_pretrained("stable-diffusion-v1-5/stable-diffusion-v1-5")
pipe.load_lora_weights("SedatAl/Logo-LoRa-1")
prompt = "a logo of coffee shop wit a cup of coffee under a framed arch, no text, modern, minimalist"
image = pipe(prompt).images[0]