medmac01 commited on
Commit
fd7573f
1 Parent(s): 79a475a

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 beldi-v2 moroccan interior in a rooftop space
12
+ ---
13
+
14
+ # DreamBooth model for the beldi-v2 concept trained by medmac01 on the medmac01/dreambooth-moroccan-design-v2 dataset.
15
+
16
+ This is a Stable Diffusion model fine-tuned on the beldi-v2 concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of beldi-v2 moroccan interior**
17
+
18
+ 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!
19
+
20
+ ## Description
21
+
22
+
23
+ This is a Stable Diffusion model fine-tuned on `moroccan interior` images.
24
+
25
+
26
+ ## Usage
27
+
28
+ ```python
29
+ from diffusers import StableDiffusionPipeline
30
+
31
+ pipeline = StableDiffusionPipeline.from_pretrained('medmac01/beldi-moroccan-interior-2')
32
+ image = pipeline().images[0]
33
+ image
34
+ ```