gaurav761 commited on
Commit
61c08cd
·
verified ·
1 Parent(s): 09bf149

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - stable-diffusion
7
+ - text-to-image
8
+ - image-to-image
9
+ - diffusion-models-class
10
+ - dreambooth-hackathon
11
+ - bedroom
12
+ widget:
13
+ - text: a photo of the same bedroom as the input_img, but with a black wall and a
14
+ same bed
15
+ ---
16
+
17
+ # DreamBooth model for the room concept trained by gaurav761 on the gaurav761/bedroom-image dataset.
18
+
19
+ This is a Stable Diffusion model fine-tuned on the room concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of room bed, wall, table, curtains**
20
+
21
+ 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!
22
+
23
+ ## Description
24
+
25
+
26
+ This is a Stable Diffusion model fine-tuned on `bed, wall, table, curtains` images for the bedroom theme.
27
+
28
+
29
+ ## Usage
30
+
31
+ ```python
32
+ from diffusers import StableDiffusionPipeline
33
+
34
+ pipeline = StableDiffusionPipeline.from_pretrained('gaurav761/bedroom-01')
35
+ image = pipeline().images[0]
36
+ image
37
+ ```