|
|
--- |
|
|
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) |
|
|
|
|
|
|
|
|
|