tilake commited on
Commit
c700bde
1 Parent(s): 5e24c00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -1
README.md CHANGED
@@ -1,3 +1,49 @@
1
  ---
2
- license: openrail
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: the cat called loulou, with snow in the background
13
  ---
14
+
15
+ # DreamBooth model for loulou cat
16
+
17
+ This is the model for a cat called "Lou Lou" (楼楼). The model is based on Stable Diffusion model, fine-tuned the cat taught to Stable Diffusion with DreamBooth. It trained by the member of tilake AIGC group on the dataset from internet, for entertainment only.
18
+ It can be used by modifying the `instance_prompt`: **the cat called loulou**
19
+
20
+ 这是一个生成 “楼楼” 猫的模型。该模型基于 Stable Diffusion 模型,通过 DreamBooth 方法进行微调。该模型由 tilake AIGC 小组成员训练并开放给社区,仅供娱乐。
21
+ 你可以通过扩充以下 “instance_prompt” 来生成关于楼楼的不同场景、姿态:**the cat called loulou**
22
+
23
+
24
+ ## Description
25
+
26
+ "Lou Lou" (楼楼) is a very popular cat online. At 0:25 on October 14, 2017, he left us forever because of illness and returned to his cat planet. As a loyal fan of "Lou Lou" (楼楼) and his expression pack, I trained a model specially used to generate the building as a memorial.
27
+
28
+ If you like this model, click the \[❤ like\] button!
29
+
30
+ 楼楼是一只人气超高的网红猫。2017年10月14日0时25分,它因病永远离开了我们回到喵星。作为楼楼及其表情包的忠实粉丝,我训练了一个专门用于生成楼楼的模型,作为纪念。如果喜欢该模型,欢迎点亮上方【like】按钮~
31
+
32
+ ## Examples
33
+ - Prompt: ```a cute rabbit in red clothes, in the style of <guo-chao> illustration, trending on artstation, masterpiece, best quality```
34
+ <img width="200px" height="200px" src="https://huggingface.co/tilake/China-Chic-illustration/resolve/main/example/1.jpg">
35
+ - Prompt: ```dragon dance, in the style of <guo-chao> illustration, trending on artstation, masterpiece, best quality```
36
+ <img width="200px" height="200px" src="https://huggingface.co/tilake/China-Chic-illustration/resolve/main/example/2.jpg">
37
+ - Prompt: ```fireworks, in the style of <guo-chao> illustration, trending on artstation, masterpiece, best quality```
38
+ <img width="200px" height="200px" src="https://huggingface.co/tilake/China-Chic-illustration/resolve/main/example/3.jpg">
39
+ - Prompt: ```a snowman, fireworks in the background, in the style of <guo-chao> illustration, trending on artstation, masterpiece, best quality```
40
+ <img width="200px" height="200px" src="https://huggingface.co/tilake/China-Chic-illustration/resolve/main/example/4.jpg">
41
+
42
+ ## Usage
43
+
44
+ ```python
45
+ from diffusers import StableDiffusionPipeline
46
+ pipeline = StableDiffusionPipeline.from_pretrained('tilake/loulou-cat-diffusion')
47
+ image = pipeline("the cat called loulou, with snow in the background").images[0]
48
+ image
49
+ ```