Sadik-Sikder commited on
Commit
3e773c6
1 Parent(s): 71f9716

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: a photo of Heritage_of_comilla landscape in the Earth
13
+ ---
14
+
15
+ # DreamBooth model for the Heritage_of_comilla concept trained by Sadik-Sikder on the Sadik-Sikder/itakhola dataset.
16
+
17
+ This is a Stable Diffusion model fine-tuned on the Heritage_of_comilla concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of Heritage_of_comilla landscape**
18
+
19
+ ## Description
20
+
21
+
22
+ This is a Stable Diffusion model specialized on `landscape` images for the Landscape theme.
23
+
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from diffusers import StableDiffusionPipeline
29
+
30
+ pipeline = StableDiffusionPipeline.from_pretrained('Sadik-Sikder/Itakhola_model')
31
+ image = pipeline().images[0]
32
+ image
33
+ ```