Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- text-to-image
|
6 |
+
- stable-diffusion
|
7 |
+
- stable-diffusion-diffusers
|
8 |
+
- riffusion
|
9 |
+
- StableDiffusionPipeline
|
10 |
+
---
|
11 |
+
|
12 |
+
# Example Fine-Tuned Model for Irish Traditional Tunes of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class)
|
13 |
+
|
14 |
+
Fine-tuned Stable Diffusion Model for Irish Traditional Tunes (Epoch 4, 27k steps)
|
15 |
+
|
16 |
+
## Usage
|
17 |
+
|
18 |
+
```python
|
19 |
+
from diffusers import StableDiffusionPipeline
|
20 |
+
|
21 |
+
pipeline = StableDiffusionPipeline.from_pretrained('hdparmar/tradfusion-model-e4-v1')
|
22 |
+
image = pipeline().images[0]
|
23 |
+
image
|
24 |
+
```
|