File size: 1,496 Bytes
d97df5c 9c1d911 1bf5f67 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | ---
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- NoAI
- AntiAI
---
Stable Diffusion 1.4 finetuned with a lot of NoAI/AntiAI images. Have fun 🤗
## !! The prompt for AntiAI logos is now sks icon.
## Sample image
NoAI-Diffusion v1.0
||||
|-|-|-|
||||
||||
## Diffusers
```py
from diffusers import StableDiffusionPipeline
import torch
model_id = "Kokohachi/NoAI-Diffusion"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16, revision="fp16")
pipe = pipe.to("cuda")
prompt = "sks icon, antiai logo"
image = pipe(prompt).images[0]
image.save("noai.png")
```
For more detailed instructions, use-cases and examples in JAX follow the instructions [here](https://github.com/huggingface/diffusers#text-to-image-generation-with-stable-diffusion)
|