plat-diffusion / README.md
p1atdev's picture
Update README.md
f369657
|
raw
history blame
No virus
2.7 kB
metadata
license: creativeml-openrail-m
inference: true
thumbnail: >-
  https://s3.amazonaws.com/moonup/production/uploads/1674263031698-6305db1fcfbde33ef7d480ff.png
tags:
  - stable-diffusion
  - stable-diffusion-diffusers
  - text-to-image
  - diffusers

Plat Diffusion v1.3.1

Plat Diffusion v1.3.1 is a latent model fine-tuned on Waifu Diffusion v1.4 Anime Epoch 2 with images from niji・journey.

.safetensors file is here.

kl-f8-anime2.ckpt is recommended for VAE.

eyecatch

Recomended Negative Prompt

nsfw, worst quality, low quality, medium quality, deleted, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digits, fewer digits, cropped, jpeg artifacts, signature, watermark, username, blurry

🧨 Diffusers

from diffusers import StableDiffusionPipeline
import torch

model_id = "p1atdev/plat-diffusion"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float32) # not working with float16
pipe = pipe.to("cuda")

prompt = "masterpiece, best quality, 1girl, solo, short hair, looking at viewer, japanese clothes, blue hair, portrait, kimono, bangs, colorful, closed mouth, blue kimono, butterfly, blue eyes, ultra detailed illustration"
negative_prompt = "nsfw, worst quality, low quality, medium quality, deleted, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, jpeg artifacts, signature, watermark, username, blurry"
image = pipe(prompt, negative_prompt=negative_prompt).images[0]  
    
image.save("girl.png")

License

This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage. The CreativeML OpenRAIL License specifies:

  1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
  2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
  3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here