shoe-generator / README.md
Apocalypse-19's picture
Upload README.md with huggingface_hub
2c2408b
---
license: mit
tags:
- pytorch
- diffusers
- unconditional-image-generation
---
This model is a diffusion model for unconditional image generation of shoes
trained on a custom dataset at 128x128 resolution
## Usage
```python
from diffusers import DDPMPipeline
pipeline = DDPMPipeline.from_pretrained('Apocalypse-19/shoe-generator')
image = pipeline().images[0]
image
```