Adding `diffusers` weights of this model
#2
by
radames
- opened
This PR adds fp32 and fp16 weights in PyTorch and safetensors format to proximasanfinetuning/fantassified_icons_v2
tested and works like a charm
import torch
from diffusers import StableDiffusionPipeline, DDIMScheduler
scheduler = DDIMScheduler.from_pretrained("proximasanfinetuning/fantassified_icons_v2", subfolder="scheduler", revision="refs/pr/2")
pipe = StableDiffusionPipeline.from_pretrained("proximasanfinetuning/fantassified_icons_v2", scheduler=scheduler, revision="refs/pr/2").to("cuda")
prompt = "A lemont themed high quality hamburguer"
images = pipe(prompt, num_images_per_prompt=6, num_inference_steps=25).images
images[0]
proxima
changed pull request status to
merged
This comment has been hidden