Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,34 @@
|
|
1 |
---
|
2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- wildcard
|
11 |
+
widget:
|
12 |
+
- text: style of <guo-chao> illustration, a rabbit wearing sunglasses
|
13 |
---
|
14 |
+
|
15 |
+
# DreamBooth model for China-Chic-illustration trained by tilake aigc group on the own dataset.
|
16 |
+
|
17 |
+
This is the first `China-Chic illustration` model. The model is based on Stable Diffusion model, fine-tuned the `China-Chic illustration` style taught to Stable Diffusion with DreamBooth.
|
18 |
+
It can be used by modifying the `instance_prompt`: **style of \<guo-chao\> illustration**
|
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 |
+
This is a Stable Diffusion model fine-tuned on `China-Chic illustration` style images. It is trained by Tilake AIGC Group.
|
25 |
+
|
26 |
+
|
27 |
+
## Usage
|
28 |
+
|
29 |
+
```python
|
30 |
+
from diffusers import StableDiffusionPipeline
|
31 |
+
pipeline = StableDiffusionPipeline.from_pretrained('tilake/China-Chic-illustration')
|
32 |
+
image = pipeline("style of <guo-chao> illustration, a rabbit wearing sunglasses").images[0]
|
33 |
+
image
|
34 |
+
```
|