master-mahdi commited on
Commit
de1f919
·
verified ·
1 Parent(s): e07196d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - stable-diffusion
7
+ - text-to-image
8
+ - diffusion-models-class
9
+ - dreambooth-hackathon
10
+ widget:
11
+ - text: a photo of Xenotron 1
12
+ ---
13
+
14
+ ## Description
15
+
16
+
17
+ This is a Stable Diffusion model fine-tuned on `1` images for the theme.
18
+
19
+
20
+ ## Usage
21
+
22
+ ```python
23
+ from diffusers import StableDiffusionPipeline
24
+
25
+ pipeline = StableDiffusionPipeline.from_pretrained('master-mahdi/Xenotron-1')
26
+ image = pipeline().images[0]
27
+ image
28
+ ```