benlehrburger commited on
Commit
fe0394c
1 Parent(s): 96ce317

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
+ tags:
3
+ - pytorch
4
+ - diffusers
5
+ - unconditional-image-generation
6
+ - diffusion-models-class
7
+ ---
8
+
9
+ # Multi-epoch (50) unconditional image generation model finetuned with modern architecture data
10
+
11
+ Multi-epoch (50) unconditional image generation model finetuned with modern architecture data
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from diffusers import DDPMPipeline
17
+
18
+ pipeline = DDPMPipeline.from_pretrained('benlehrburger/Deeper-LSUN-church-finetuned-modern-model')
19
+ image = pipeline().images[0]
20
+ image
21
+ ```