Commit
·
e8d40f3
1
Parent(s):
9887f30
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,46 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- pytorch
|
5 |
+
- diffusers
|
6 |
+
- text-to-image
|
7 |
---
|
8 |
+
|
9 |
+
# LoRA of Chinese Diffusion Model (poem)
|
10 |
+
|
11 |
+
## 简介 Brief Introduction
|
12 |
+
|
13 |
+
我们开源了适配中文 Diffusion 模型 `alibaba-pai/pai-diffusion-artist-large-zh` 的 LoRA,您可以输入中国古诗词,模型将会根据诗句生成古风水墨配图。
|
14 |
+
|
15 |
+
We release a LoRA for our Chinese diffusion model `alibaba-pai/pai-diffusion-artist-large-zh`. This model can generate Chinese ink paintings according to the poem you input.
|
16 |
+
|
17 |
+
* Github: [EasyNLP](https://github.com/alibaba/EasyNLP)
|
18 |
+
|
19 |
+
## 使用 Usage
|
20 |
+
|
21 |
+
```python
|
22 |
+
from diffusers import StableDiffusionPipeline
|
23 |
+
|
24 |
+
model_id = "alibaba-pai/pai-diffusion-artist-large-zh"
|
25 |
+
pipe = StableDiffusionPipeline.from_pretrained(model_id)
|
26 |
+
pipe.unet.load_attn_procs("alibaba-pai/pai-diffusion-artist-large-zh-lora-poem")
|
27 |
+
pipe = pipe.to("cuda")
|
28 |
+
|
29 |
+
prompt = "大漠孤烟直,长河落日圆"
|
30 |
+
image = pipe(prompt, cross_attention_kwargs={"scale": 0.4}).images[0]
|
31 |
+
image.save("result.png")
|
32 |
+
```
|
33 |
+
|
34 |
+
## 作品展示 Gallery
|
35 |
+
|
36 |
+
| prompt: 大漠孤烟直,长河落日圆 | prompt: 接天莲叶无穷碧,映日荷花别样红 |
|
37 |
+
| ---------------------------------------- | ---------------------------------- |
|
38 |
+
| scale: 0.6 | scale: 0.4 |
|
39 |
+
| ![](example1.png) | ![](example2.png) |
|
40 |
+
|
41 |
+
## 使用须知 Notice for Use
|
42 |
+
|
43 |
+
使用上述模型需遵守[AIGC模型开源特别条款](https://terms.alicdn.com/legal-agreement/terms/common_platform_service/20230505180457947/20230505180457947.html)。
|
44 |
+
|
45 |
+
If you want to use this model, please read this [document](https://terms.alicdn.com/legal-agreement/terms/common_platform_service/20230505180457947/20230505180457947.html) carefully and abide by the terms.
|
46 |
+
|