Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,20 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- unconditional-image-generation
|
7 |
+
- diffusion-models-class
|
8 |
---
|
9 |
+
# Model Card for Unit 1 of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class)
|
10 |
+
|
11 |
+
If you are wondering what would happen when a model trained on a bunch of images pokemons and then denoising them using Diffusion, then check out this model.
|
12 |
+
|
13 |
+
## Usage
|
14 |
+
|
15 |
+
```python
|
16 |
+
from diffusers import DDPMPipeline
|
17 |
+
pipeline = DDPMPipeline.from_pretrained('Hawk91/sd-Pokemon')
|
18 |
+
image = pipeline().images[0]
|
19 |
+
image
|
20 |
+
```
|