chenglu commited on
Commit
ba6c5e3
1 Parent(s): b0506dd

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
+ 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: caicai dog sitting on top of the deck of a battle ship traveling through the
13
+ open sea with a lot of ships surrounding it
14
+ ---
15
+
16
+ # DreamBooth model for the caicai concept trained by chenglu.
17
+
18
+ This is a Stable Diffusion model fine-tuned on the caicai concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of caicai dog**
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 fine-tuned on `dog` images for the animal theme,
26
+ for the Hugging Face DreamBooth Hackathon, from the HF CN Community,
27
+ corporated with the HeyWhale.
28
+
29
+
30
+ Thanks to @hhhxynh in the HF China community.
31
+
32
+ ## Usage
33
+
34
+ ```python
35
+ from diffusers import StableDiffusionPipeline
36
+
37
+ pipeline = StableDiffusionPipeline.from_pretrained('chenglu/caicai-dog-heywhale')
38
+ image = pipeline().images[0]
39
+ image
40
+ ```