Views
No views yet
instance_prompt: a photo of sks zach fox. Yea...I misspelled his name when I made the prompt. My bad lol.diffusers: Colab Notebook for Inference, Spaces with the Public Concepts loaded1import torch
2from diffusers import StableDiffusionPipeline
3
4pipe = StableDiffusionPipeline.from_pretrained(
5 "nateraw/zack-fox",
6 torch_dtype=torch.float16
7).to("cuda")
8
9prompt = "a photo of sks zach fox, oil on canvas"
10image = pipe(prompt).images[0]























