palsd commited on
Commit
3d832fb
1 Parent(s): c8112a5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - food
11
+ widget:
12
+ - text: Eating yum_vada_pav vada pav with glass of chai while sitting at the bench
13
+ in Antarctica in midst of glaciers
14
+ ---
15
+
16
+ # DreamBooth model for the yum_vada_pav concept trained by palsd on the palsd/dreambooth_hackathon_vada_pav dataset.
17
+
18
+ This is a Stable Diffusion model fine-tuned on the yum_vada_pav concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of yum_vada_pav vada pav**
19
+
20
+ 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!
21
+
22
+ ## Description
23
+
24
+
25
+ This is a Stable Diffusion model fine-tuned on `vada pav` images for the food theme. Being foodie and Indian street foods lover, thought to play with stable diffusion model for Vada pav (Indian burger) images so I can enjoy dream of eating it in the midst of glaciers :)
26
+
27
+
28
+ ## Usage
29
+
30
+ ```python
31
+ from diffusers import StableDiffusionPipeline
32
+
33
+ pipeline = StableDiffusionPipeline.from_pretrained('palsd/yum_vada_pav')
34
+ image = pipeline().images[0]
35
+ image
36
+ ```