DGSpitzer/Cyberpunk-Anime-Diffusion


An AI model that generates cyberpunk anime characters!~

Based of a finetuned Waifu Diffusion V1.3 Model with Stable Diffusion V1.5 New Vae, training in Dreambooth

by DGSpitzer

:firecracker: Diffusers

This repo contains both .ckpt and Diffuser model files. It’s compatible to be used as any Stable Diffusion model, using standard Stable Diffusion Pipelines.

You can convert this model to ONNX, MPS and/or FLAX/JAX.

#!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")

Online Demo

You can try the Online Web UI demo build with Gradio, or use Colab Notebook at here:

My Online Space Demo Open In Spaces

Finetuned Diffusion WebUI Demo by anzorq Use Finetuned_Diffusion WebUI

Colab Notebook Open In ColabGitHub

Buy me a coffee if you like this project :stuck_out_tongue_winking_eye: :heart: