Apocalypse-19 commited on
Commit
2e32cf3
1 Parent(s): 95b9273

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
+ - diffusion-models-class
8
+ ---
9
+
10
+
11
+ The celebhq model finetuned on vintage faces for face generation
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from diffusers import DDPMPipeline
17
+
18
+ pipeline = DDPMPipeline.from_pretrained('Apocalypse-19/ddpm-celebahq-fintuned-vintage-faces')
19
+ image = pipeline().images[0]
20
+ image
21
+ ```