plat-diffusion / README.md
p1atdev's picture
fix thumbnail
981635a
|
raw
history blame
No virus
1.57 kB
metadata
license: creativeml-openrail-m
inference: true
thumbnail: https://bit.ly/3Is8sF8
tags:
  - stable-diffusion
  - stable-diffusion-diffusers
  - text-to-image
  - diffusers

Plat Diffusion v1.3.0

Plat Diffusion is a fine-tuned model based on Waifu Diffusion v1.4 Anime Epoch 1 with images generated with niji・journey.

.safetensors file is here.

image.png

masterpiece, best quality, 1girl, orange feather, blue crystals, blurry foreground

Recomended Negative Prompt

nsfw, worst quality, low quality, deleted, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, 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, orange feather, blue crystals, blurry foreground"
negative_prompt = "nsfw, worst quality, low 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")