enzokro commited on
Commit
eb3833d
1 Parent(s): 4b45d9b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 cute 🦋.
13
+
14
+ It was trained with a SmoothL1 loss with Beta = 1 (aka same as Huber Loss).
15
+
16
+ ## Usage
17
+
18
+ ```python
19
+ from diffusers import DDPMPipeline
20
+
21
+ pipeline = DDPMPipeline.from_pretrained('enzokro/sd-class-butterflies-huber-32')
22
+ image = pipeline().images[0]
23
+ image
24
+ ```