dacquaviva
commited on
Commit
•
ff234cb
1
Parent(s):
1e9834a
Update README.md
Browse files
README.md
CHANGED
@@ -1,40 +1,33 @@
|
|
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 |
-
- animal
|
15 |
-
widget:
|
16 |
-
- text: a photo of bongodog dog in the Acropolis
|
17 |
-
---
|
18 |
|
19 |
-
|
20 |
|
21 |
-
|
22 |
|
23 |
-
|
24 |
|
25 |
-
|
26 |
|
27 |
-
|
28 |
-
This is a Stable Diffusion model fine-tuned on my `dog` images for the animal theme. His name is Bongo :).
|
29 |
-
|
30 |
|
31 |
-
|
|
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
image = pipeline().images[0]
|
38 |
-
image
|
39 |
-
```
|
40 |
-
|
|
|
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 |
+
- animal
|
11 |
+
widget:
|
12 |
+
- text: a photo of bongodog dog in the Acropolis
|
13 |
---
|
14 |
|
15 |
+
# DreamBooth model for the bongodog concept trained by dacquaviva on the dacquaviva/bongodog dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
This is a Stable Diffusion model fine-tuned on the bongodog concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of bongodog dog**
|
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 |
+
This is a Stable Diffusion model fine-tuned on my `dog` images for the animal theme. His name is Bongo :).
|
24 |
|
25 |
+
## Usage
|
|
|
|
|
26 |
|
27 |
+
```python
|
28 |
+
from diffusers import StableDiffusionPipeline
|
29 |
|
30 |
+
pipeline = StableDiffusionPipeline.from_pretrained('dacquaviva/bongodog-dog')
|
31 |
+
image = pipeline().images[0]
|
32 |
+
image
|
33 |
+
```
|
|
|
|
|
|
|
|