Counterfeit V3 is a latent text-to-image diffusion model capable of generating images of people, mainly, and other things, in the style of Japanese anime. For more information about how Stable Diffusion functions, please have a look at 🤗's
Stable Diffusion blog.
You can use this with the 🧨Diffusers library from
Hugging Face.
1from diffusers import StableDiffusionPipeline
2import torch
3
4pipeline = StableDiffusionPipeline.from_pretrained("glides/counterfeit").to("cuda")
5
6image = pipeline(prompt="a girl in a white dress").images[0]
7image.save("girl.png")