File size: 1,597 Bytes
d97df5c 3316435 f24e702 9c1d911 3316435 e55e869 18a9b83 e55e869 ada2de0 60e7350 ada2de0 60e7350 ada2de0 e55e869 57c18b4 e55e869 8be61e5 e55e869 |
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 41 42 43 44 45 46 47 48 49 |
---
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- NoAI
- AntiAI
---
## NoAI-Diffusion v1.2
Updates: prompt now is **antiai logo**
# .CKPT at /models
# Stable Diffusion 1.4 finetuned with a lot of NoAI/AntiAI images. Have fun 🤗
## Sample image
v1.0 → normal
v1.1 → *creative*
v1.2 → __clear letters__
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 = "a photo of 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)
|