CoolFace
Modelpublic

glides/counterfeit

sourceHugging Facemitupdated 26d agoView on Hugging Face
1likes96downloads
README.md32 linesDownload Raw Back to root
1---2library_name: diffusers3license: mit4---5## Counterfeit Model Card6 7Counterfeit 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](https://huggingface.co/blog/stable_diffusion).8 9You can use this with the 🧨Diffusers library from [Hugging Face](https://huggingface.co).10 11![So pretty, right?](pipe.png)12 13### Diffusers14```py15from diffusers import StableDiffusionPipeline16import torch17 18pipeline = StableDiffusionPipeline.from_pretrained("glides/counterfeit").to("cuda")19 20image = pipeline(prompt="a girl in a white dress").images[0]21image.save("girl.png")22```23 24### Limitations25 26- The model does not create perfect illustrations27- The model cannot render legible text28 29### Developed by30- rqdwdw31 32*This model card was written by Noa Roggendorff and is based on the [Stable Diffusion v1-5 Model Card](https://huggingface.co/runwayml/stable-diffusion-v1-5).*