File size: 348 Bytes
8a05e30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
tags:
- pytorch
- stable diffusion
- dreambooth
- diffusion-models-class
---

# Dreambooth training set using Nala (a bunny)

Precursor to further Dreambooth experimentation

## Usage

```python
from diffusers import DDPMPipeline

pipeline = DDPMPipeline.from_pretrained('benlehrburger/dreambooth-animal')
image = pipeline().images[0]
image
```