dacquaviva commited on
Commit
4510086
·
1 Parent(s): 1b699fe

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -0
README.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ {}
3
+ ---
4
+
5
+ ---
6
+ license: creativeml-openrail-m
7
+ tags:
8
+ - pytorch
9
+ - diffusers
10
+ - stable-diffusion
11
+ - text-to-image
12
+ - diffusion-models-class
13
+ - dreambooth-hackathon
14
+ - food
15
+ widget:
16
+ - text: a photo of focacciabarese pizza
17
+ ---
18
+
19
+ # DreamBooth model for the focacciabarese concept trained by dacquaviva on the dacquaviva/focacciabarese dataset.
20
+
21
+ This is a Stable Diffusion model fine-tuned on the focacciabarese concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of facacciabarese pizza**
22
+
23
+ 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!
24
+
25
+ ## Description
26
+
27
+
28
+ This is a Stable Diffusion model fine-tuned on my `pizza` images for the food theme. In Bari (Puglia south of Italy), the focaccia is a kind of bread, seasoned with tomatoes, olives, virgin olive oil, and oregano. It is made with poor, very simple, and local ingredients. :).
29
+
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from diffusers import StableDiffusionPipeline
35
+
36
+ pipeline = StableDiffusionPipeline.from_pretrained('dacquaviva/focacciabarese-pizza')
37
+ image = pipeline().images[0]
38
+ image
39
+ ```
40
+