alkzar90 commited on
Commit
58cd909
1 Parent(s): 3576460

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
+ - diffusion-models-class
8
+ ---
9
+
10
+ # Model Card for Unit 1 of the [Diffusion Models Class 🧨](https://github.com/huggingface/diffusion-models-class)
11
+
12
+ This model is a diffusion model for unconditional image generation of Ukiyo-e images ✍ 🎨.
13
+ More about the dataset used: https://huggingface.co/datasets/huggan/ukiyoe2photo
14
+
15
+ ## Usage
16
+
17
+ ```python
18
+ from diffusers import DDPMPipeline
19
+
20
+ pipeline = DDPMPipeline.from_pretrained('alkzar90/sd-class-ukiyo-e-32')
21
+ image = pipeline().images[0]
22
+ image
23
+ ```