File size: 1,566 Bytes
f339ffe 34e6a75 981635a 34e6a75 f339ffe d5bc3ba 0cc0f3d d5bc3ba 0cc0f3d aa8e74b 0cc0f3d d5bc3ba 0cc0f3d d5bc3ba 34e6a75 d5bc3ba 34e6a75 0cc0f3d 34e6a75 a90cfcf 34e6a75 aa8e74b 34e6a75 0cc0f3d 0aa9984 34e6a75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
---
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](https://huggingface.co./hakurei/waifu-diffusion-v1-4) with images generated with niji・journey.
`.safetensors` file is [here](https://huggingface.co./p1atdev/pd-archive/tree/main).
![image.png](https://s3.amazonaws.com/moonup/production/uploads/1672836449977-6305db1fcfbde33ef7d480ff.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
```py
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")
``` |