hdparmar commited on
Commit
19d6b77
1 Parent(s): 75a6afe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - unconditional-image-generation
7
+ - text-to-image
8
+ - diffusion-models-class
9
+ ---
10
+
11
+ # Example Fine-Tuned Model for Unit 2 of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class)
12
+
13
+ Fine-tuned Stable Diffusion Model on Irish Traditional Tunes Spectrograms
14
+
15
+ ## Usage
16
+
17
+ ```python
18
+ from diffusers import StableDiffusionPipeline
19
+
20
+ pipeline = StableDiffusionPipeline.from_pretrained('hdparmar/tradfusion-v2')
21
+ image = pipeline().images[0]
22
+ image
23
+ ```