everything-v1 / README.md
TheRafal's picture
Update README.md
d3d9e17
|
raw
history blame
1.12 kB
metadata
license: creativeml-openrail-m
language:
  - en
pipeline_tag: text-to-image

Everything V1

Like other anime-style Stable Diffusion models, it also supports danbooru tags to generate images.

e.g. 1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden

🤗 Diffusers

This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion.

You can also export the model to ONNX, MPS and/or FLAX/JAX.

from diffusers import StableDiffusionPipeline
import torch

model_id = "TheRafal/everything-v1"
branch_name= "main"

pipe = StableDiffusionPipeline.from_pretrained(model_id, revision=branch_name, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "1girl, monika \(doki doki literature club\)"
image = pipe(prompt).images[0]

image.save("./monika.png")

(TODO)