---
license: creativeml-openrail-m
---
# DeathNote Diffusion
This is the fine-tuned Stable Diffusion model trained on images from the anime Death Note.
The following tokens will add their corresponding concept :
- **DeathNote notebook** : the Deathnote itself
- **Light Yagami** man : Light Yagami, main character
- **Ryuk** demon : Ryuk, Shinigami
- **LLawliet** man : L, "full" name
- **Misa Amane** girl : Second Kira
- **Soichiro Yagami** man : Soichiro, Father of Light, Policeman
- **Sayou Yagami** girl : Sayou, sister of Light
- **Raye Penber** man : Raye, FBI Agent
- **Naomi Misora** girl : Naomi, fiance of Raye
- **DNStyle style** : style of the anime
### 🧨 Diffusers
This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
```python
from diffusers import StableDiffusionPipeline
import torch
model_id = "Guizmus/DeathNote"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "Ryuk demon, intricate, headshot, highly detailed"
image = pipe(prompt).images[0]
image.save("./Ryuk_demon.png")
```