lewtun HF staff commited on
Commit
46baad0
1 Parent(s): 408c40a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 glxy galaxy
12
+ ---
13
+
14
+ # DreamBooth model for glxy trained by lewtun on the lewtun/galaxies dataset.
15
+
16
+ This your the Stable Diffusion model fine-tuned the glxy concept taught to Stable Diffusion with DreamBooth.
17
+ It can be used by modifying the `instance_prompt`: **a photo of glxy galaxy**
18
+
19
+ This model was created as part of the DreamBooth Hackathon. Visit the organisation page for instructions on how to take part!
20
+
21
+ ## Description
22
+
23
+ Describe your model and concept here.
24
+
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from diffusers import StableDiffusionPipeline
30
+
31
+ pipeline = StableDiffusionPipeline.from_pretrained('dreambooth-hackathon/glxy-galaxy')
32
+ image = pipeline().images[0]
33
+ image
34
+ ```