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

This model is a diffusion model for unconditional image generation of mammograms of size 64x64 pixels.
The model was trained with 1000 images using the [DDPM](https://arxiv.org/abs/2006.11239) architecture.
The model was trained for 50 epochs with a batch size of 64, using around 11 GB of GPU memory. 

## Usage

```python
from diffusers import DDPMPipeline

pipeline = DDPMPipeline.from_pretrained({hub_model_id})
image = pipeline().images[0]
image
```