Civitai Models
Collection
Diffuser weights for some cool, fine tuned Stable Diffusion Models. • 34 items • Updated • 3
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("sam749/SeekYou-Mikan", dtype=torch.bfloat16, device_map="cuda")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]You can use this with the 🧨Diffusers library
from diffusers import StableDiffusionPipeline
import torch
model_id = "sam749/SeekYou-Mikan"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "masterpiece, best quality, 1girl, (colorful),(delicate eyes and face), volumatic light, ray tracing, bust shot ,extremely detailed CG unity 8k wallpaper,solo,smile"
image = pipe(prompt).images[0]
image.save("result.png")