adarksky commited on
Commit
941aa78
·
verified ·
1 Parent(s): fb7ba02

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - unconditional-image-generation
7
+ - huggan/pokemon
8
+ - DDPM
9
+ ---
10
+
11
+ Model for generating new *mutated* pokemons! (lame though 🥲)
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from diffusers import DDPMPipeline
17
+
18
+ pipeline = DDPMPipeline.from_pretrained('adarksky/pokemon-DDPM')
19
+ image = pipeline().images[0]
20
+ image
21
+ ```