File size: 642 Bytes
4a3b961
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d3d1677
4a3b961
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
license: mit
tags:
- pytorch
- diffusers
- unconditional-image-generation
- diffusion-models-class
---

# Model Card for Stable Diffusion - Butterflies, 64px
Model developed for the Unit 1 of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class).

This model is a diffusion model for unconditional image generation of cute butterflies 🦋.  
It is trained on a very small collection of 1'000 pictures and trained for 30 epochs.

## Usage

```python
from diffusers import DDPMPipeline

pipeline = DDPMPipeline.from_pretrained('alkiskoudounas/sd-butterflies-64px')
image = pipeline().images[0]
image
```