BackTo2014
commited on
Update Readme.md
Browse files
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 |
+
```
|