Datasets:
benlehrburger
commited on
Commit
•
8a05e30
1
Parent(s):
6f14fa0
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- pytorch
|
4 |
+
- stable diffusion
|
5 |
+
- dreambooth
|
6 |
+
- diffusion-models-class
|
7 |
+
---
|
8 |
+
|
9 |
+
# Dreambooth training set using Nala (a bunny)
|
10 |
+
|
11 |
+
Precursor to further Dreambooth experimentation
|
12 |
+
|
13 |
+
## Usage
|
14 |
+
|
15 |
+
```python
|
16 |
+
from diffusers import DDPMPipeline
|
17 |
+
|
18 |
+
pipeline = DDPMPipeline.from_pretrained('benlehrburger/dreambooth-animal')
|
19 |
+
image = pipeline().images[0]
|
20 |
+
image
|
21 |
+
```
|