Stable Diffusion 1.4 finetuned with a lot of NoAI/AntiAI images plus AI generated creative logos. Have fun 🤗
Sample image
NoAI-Diffusion-variety v1.0
Diffusers
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
- Downloads last month
- 0
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.