DiamondYin commited on
Commit
cfbc7b7
1 Parent(s): acffc5c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - wildcard
11
+ widget:
12
+ - text: In space, there is a spaceship docked here, and Wall-E-01 walks in the spaceship,8K
13
+ resolution, 16:9
14
+ ---
15
+
16
+ # DreamBooth model for the Wall-E-01 concept trained by DiamondYin.
17
+
18
+ This is a Stable Diffusion model fine-tuned on the Wall-E-01 concept with DreamBooth. It can be used by modifying the `instance_prompt`: **a photo of Wall-E-01 robot**
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 `robot` images for the wildcard theme,
26
+ for the Hugging Face DreamBooth Hackathon, from the HF CN Community,
27
+ corporated with the HeyWhale.The production cost of WALL-E is $180 million. It tells about a lonely robot designed to clean up the polluted earth. The unique feature of this film is that there is almost no dialogue in the first 40 minutes or so. On the contrary, the audience enters a world of robots; How it thinks, how it works, how it speaks (or doesn't speak). Pixar's classic film was a success. The film has a global box office of more than 520 million US dollars, won a number of Oscar nominations, and ranked first on Time magazine's list of the best films of the decade.
28
+ Now we can easily create Wally's pictures and present the script's pictures with the help of the Stable Diffusion model. We can write a series of stories for WALL-E, but we don't have to bear such expensive costs. This is the advantage of the Stable Diffusion model
29
+
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from diffusers import StableDiffusionPipeline
35
+
36
+ pipeline = StableDiffusionPipeline.from_pretrained('DiamondYin/Wall-E-01-robot-heywhale')
37
+ image = pipeline().images[0]
38
+ image
39
+ ```