BackTo2014 commited on
Commit
3328a53
·
verified ·
1 Parent(s): bee03d6

Update Readme.md

Browse files
Files changed (1) hide show
  1. Readme.md +13 -0
Readme.md CHANGED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Original model github address:[DenoisingDiffusionProbabilityModel-ddpm-](https://github.com/zoubohao/DenoisingDiffusionProbabilityModel-ddpm-)
2
+
3
+ This is a simple attempt. I trained with CIFAR-10 dataset.
4
+
5
+ ## Usage
6
+
7
+ ```python
8
+ from diffusers import DDPMPipeline
9
+
10
+ pipeline = DDPMPipeline.from_pretrained('BackTo2014/DDPM-test')
11
+ image = pipeline().images[0]
12
+ image
13
+ ```