T-GEN commited on
Commit
0b81546
1 Parent(s): 9a26de9

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
+ - diffusion-models-class
9
+ - dreambooth-hackathon
10
+ - landscape
11
+ widget:
12
+ - text: The MughalMarvel Taj Mahal hidden in a mystical forest, with ancient trees
13
+ covered in moss, glowing fireflies illuminating the pathways, and a soft moonlight
14
+ casting ethereal shadows on the monument.
15
+ ---
16
+
17
+ # DreamBooth model for the MughalMarvel concept trained by T-GEN on the dataset.
18
+
19
+ This is a Stable Diffusion model fine-tuned on the MughalMarvel concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of MughalMarvel TajMahal**
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 `TajMahal` images for the landscape theme.
27
+
28
+
29
+ ## Usage
30
+
31
+ ```python
32
+ from diffusers import StableDiffusionPipeline
33
+
34
+ pipeline = StableDiffusionPipeline.from_pretrained('T-GEN/MughalMarvel-TajMahal')
35
+ image = pipeline().images[0]
36
+ image
37
+ ```