dogeplusplus
commited on
Commit
•
d78bba9
1
Parent(s):
f60448a
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: a photo of a jaffa cake
|
13 |
+
---
|
14 |
+
|
15 |
+
# DreamBooth model for the jaffa concept trained by dogeplusplus on some images of jaffa cakes.
|
16 |
+
|
17 |
+
This is a Stable Diffusion model fine-tuned on the jaffa concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of a jaffa cake**
|
18 |
+
|
19 |
+
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!
|
20 |
+
|
21 |
+
## Description
|
22 |
+
|
23 |
+
| Stable Diffusion v1-4 | Dreambooth Jaffa |
|
24 |
+
| -- | -- |
|
25 |
+
| ![](stable-jaffa.png) | ![](dreambooth-jaffa.png) |
|
26 |
+
|
27 |
+
Generate images of jaffa cakes in different contexts and art styles:
|
28 |
+
|
29 |
+
| "ukiyo-e" | "picasso" | "rembrandt" |
|
30 |
+
| -- | -- | -- |
|
31 |
+
| ![](ukiyoe-jaffa.png) | ![](picasso-jaffa.png) | ![](rembrandt-jaffa.png) |
|
32 |
+
| -- | -- | -- |
|
33 |
+
| "van gogh" | "warhol" | "dali" |
|
34 |
+
| ![](vangogh-jaffa.png) | ![](warhol-jaffa.png) | ![](dali-jaffa.png) |
|
35 |
+
| -- | -- | -- |
|
36 |
+
|
37 |
+
## Usage
|
38 |
+
|
39 |
+
```python
|
40 |
+
from diffusers import StableDiffusionPipeline
|
41 |
+
|
42 |
+
pipeline = StableDiffusionPipeline.from_pretrained('dogeplusplus/jaffa-cake')
|
43 |
+
image = pipeline().images[0]
|
44 |
+
image
|
45 |
+
```
|