WiNE-iNEFF
commited on
Commit
•
1b8174e
1
Parent(s):
fc48e8a
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,18 +1,23 @@
|
|
1 |
---
|
2 |
-
|
3 |
-
tags:
|
4 |
-
- pytorch
|
5 |
-
- diffusers
|
6 |
-
- unconditional-image-generation
|
7 |
-
- diffusion-model
|
8 |
---
|
9 |
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
from diffusers import DDPMPipeline
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
{}
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
+
---
|
6 |
+
license: mit
|
7 |
+
tags:
|
8 |
+
- pytorch
|
9 |
+
- diffusers
|
10 |
+
- unconditional-image-generation
|
11 |
+
- diffusion-model
|
12 |
+
---
|
13 |
|
14 |
+
## Usage
|
|
|
15 |
|
16 |
+
```python
|
17 |
+
from diffusers import DDPMPipeline
|
18 |
+
|
19 |
+
pipeline = DDPMPipeline.from_pretrained('WiNE-iNEFF/Minecraft-Skin-Diffusion-V2')
|
20 |
+
image = pipeline().images[0].convert('RGBA')
|
21 |
+
image
|
22 |
+
```
|
23 |
+
|