zlicastro's picture
Upload README.md with huggingface_hub
e0de4f0 verified
|
raw
history blame
498 Bytes
---
license: mit
tags:
- pytorch
- diffusers
- unconditional-image-generation
- diffusion-models-class
---
# Example Fine-Tuned Model for Unit 2 of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class)
Fine tuning butterflys over celeb faces for the diffusion course.
## Usage
```python
from diffusers import DDPMPipeline
pipeline = DDPMPipeline.from_pretrained('zlicastro/ddpm-celebahq-finetuned-butterflies-2epochs')
image = pipeline().images[0]
image
```