File size: 2,122 Bytes
79d4e19 6da8f81 79d4e19 6da8f81 c738e9b 6da8f81 c738e9b 6da8f81 c738e9b 7210b25 c738e9b 7210b25 c738e9b 6da8f81 c738e9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
---
license: apache-2.0
tags:
- pytorch
- diffusers
- text-to-image
---
# Chinese Diffusion Model (Artist, 768 Resolution)
## 简介 Brief Introduction
我们开源了一个中文 Diffusion 模型,您可以直接输入中文提示词,我们为您呈现精美的艺术风格图片。本模型的默认分辨率是 768*768。
We release a Chinese diffusion model, which is able to generate high-quality artistic images according to the prompts you input. The default resolution of this model is 768*768.
* Github: [EasyNLP](https://github.com/alibaba/EasyNLP)
## 使用 Usage
本模型支持 `diffusers`,可以参考以下范例代码:
This model supports `diffusers`. Please refer to the following code:
```python
from diffusers import StableDiffusionPipeline
model_id = "alibaba-pai/pai-diffusion-artist-xlarge-zh"
pipe = StableDiffusionPipeline.from_pretrained(model_id)
pipe = pipe.to("cuda")
prompt = "雾蒙蒙的日出在湖面上"
image = pipe(prompt).images[0]
image.save("result.png")
```
## 作品展示 Gallery
| prompt: 火车,雪地,隧道,昏暗灯光,恐怖片 | prompt: 海底世界,各种鱼类,海草 |
| ------------------------------------------ | -------------------------------- |
| negative_prompt: 多个铁轨 | negative_prompt: |
| ![](example1_large.png) | ![](example2_large.png) |
| prompt: 粉红色羽毛的猫头鹰 | prompt: 带墨镜的猫,黑客,特工,西装 |
| -------------------------- | ------------------------------------ |
| negative_prompt: | negative_prompt: |
| ![](example3_large.png) | ![](example4_large.png) |
## 使用须知 Notice for Use
使用上述模型需遵守[AIGC模型开源特别条款](https://terms.alicdn.com/legal-agreement/terms/common_platform_service/20230505180457947/20230505180457947.html)。
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. |