colab71 commited on
Commit
deffc85
·
1 Parent(s): 3399330

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - man
11
+ widget:
12
+ - text: photo of ukj
13
+ ---
14
+ # Settings
15
+ Steps:1000
16
+
17
+ Class Images: 50
18
+
19
+ # DreamBooth model for the manish concept trained by colab71 on the dataset.
20
+
21
+ This is a Stable Diffusion model fine-tuned on the manish concept with DreamBooth. It can be used by modifying the
22
+
23
+ This model was created as part of the DreamBooth Hackathon 🔥. Visit the [organisation page](https://huggingface.co/dreambooth-hackathon) for instructions on how to take part!
24
+
25
+ ## Description
26
+
27
+
28
+ This is a Stable Diffusion model fine-tuned on manish's images for the person theme.
29
+
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from diffusers import StableDiffusionPipeline
35
+
36
+ pipeline = StableDiffusionPipeline.from_pretrained('colab71/sd-1.5-manish-1000')
37
+ image = pipeline().images[0]
38
+ image
39
+ ```