Zacfer commited on
Commit
70f8c1b
1 Parent(s): 3b0b761

Upload IMG_20221106_214732_121.jpg

Browse files

#!pip install diffusers transformers scipy torch
from diffusers import StableDiffusionPipeline
import torch

model_id = "DGSpitzer/Cyberpunk-Anime-Diffusion"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "a beautiful perfect face girl in dgs illustration style, Anime fine details portrait of school girl in front of modern tokyo city landscape on the background deep bokeh, anime masterpiece, 8k, sharp high quality anime"
image = pipe(prompt).images[0]

image.save("./cyberpunk_girl.png")

Files changed (1) hide show
  1. IMG_20221106_214732_121.jpg +0 -0
IMG_20221106_214732_121.jpg ADDED