Ducco commited on
Commit
3860020
1 Parent(s): ae877f9

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
+ - dreambooth-hackathon
9
+ - food
10
+ widget:
11
+ - text: A photo of ddahi puri
12
+ ---
13
+
14
+ # Dreambooth Model for Food trained on a custom dataset.
15
+ This is a Stable Diffusion model fine-tuned on the food concept with DreamBooth. It can be used by modifying the `instance_prompt`: **A photo of ddahi puri**
16
+
17
+ This model was created as part of the DreamBooth Hackathon 🔥.
18
+
19
+ ## Description
20
+
21
+
22
+ Model finetuned on the pictures of Dahi Puri, a kind of chaat, made for the Dreambooth Hackathon
23
+
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ from diffusers import StableDiffusionPipeline
29
+
30
+ pipeline = StableDiffusionPipeline.from_pretrained('Ducco/Dahi-Puri')
31
+ image = pipeline().images[0]
32
+ image
33
+ ```