dacquaviva commited on
Commit
1e9834a
1 Parent(s): 0d81a70

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
+ - animal
15
+ widget:
16
+ - text: a photo of bongodog dog in the Acropolis
17
+ ---
18
+
19
+ # DreamBooth model for the bongodog concept trained by dacquaviva on the dacquaviva/bongodog dataset.
20
+
21
+ 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**
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 `dog` images for the animal theme. His name is Bongo :).
29
+
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from diffusers import StableDiffusionPipeline
35
+
36
+ pipeline = StableDiffusionPipeline.from_pretrained('dacquaviva/bongodog-dog')
37
+ image = pipeline().images[0]
38
+ image
39
+ ```
40
+