Ahmade commited on
Commit
d40fecb
·
1 Parent(s): ed95bfe

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
+ {}
3
+ ---
4
+
5
+ ---
6
+ license: creativeml-openrail-m
7
+ tags:
8
+ - pytorch
9
+ - diffusers
10
+ - stable-diffusion
11
+ - text-to-image
12
+ - diffusion-models-class
13
+ - dreambooth-hackathon
14
+
15
+
16
+ ## Usage
17
+
18
+ ```python
19
+ from diffusers import StableDiffusionPipeline
20
+
21
+ pipeline = StableDiffusionPipeline.from_pretrained('Ahmade/text2imagev3')
22
+ image = pipeline().images[0]
23
+ image
24
+ ```