marshmellow77 commited on
Commit
b292946
1 Parent(s): fd3af36

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: rio cat - superman, hyperrealism, no blur, 4 k resolution, ultra detailed,
13
+ style of ivan shishkin, thomas kinkad, zdzisław beksinski
14
+ ---
15
+
16
+ # DreamBooth model for the rio concept trained by marshmellow77 on the marshmellow77/pics_rio dataset.
17
+
18
+ This is a Stable Diffusion model v1-5 fine-tuned on the rio concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of rio cat**
19
+
20
+ 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!
21
+
22
+ ## Description
23
+
24
+
25
+ This is a Stable Diffusion model v1-5 fine-tuned on `cat` images for the animal theme.
26
+
27
+
28
+ ## Usage
29
+
30
+ ```python
31
+ from diffusers import StableDiffusionPipeline
32
+
33
+ pipeline = StableDiffusionPipeline.from_pretrained('marshmellow77/rio-cat-sd-1-5')
34
+ image = pipeline().images[0]
35
+ image
36
+ ```