File size: 294 Bytes
b46e0da
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
license: mit
tags:
- pytorch
- diffusers
- unconditional-image-generation
- diffusion-model
---

## Usage

```python
from diffusers import DDPMPipeline

pipeline = DDPMPipeline.from_pretrained('WiNE-iNEFF/Minecraft-Skin-Diffusion-V3')
image = pipeline().images[0].convert('RGBA')
image
```