Edit model card

Chinese Diffusion Model (Artist, 512 Resolution)

简介 Brief Introduction

我们开源了一个中文 Diffusion 模型,您可以直接输入中文提示词,我们为您呈现精美的艺术风格图片。本模型的默认分辨率是 512*512。

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 512*512.

使用 Usage

本模型支持 diffusers,可以参考以下范例代码:

This model supports diffusers. Please refer to the following code:

from diffusers import StableDiffusionPipeline

model_id = "alibaba-pai/pai-diffusion-artist-large-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:
prompt: 亭台楼阁,曲径通幽,水墨绘画,中国风 prompt: 阳光,彩虹,小白马
negative_prompt: 油画,彩色 negative_prompt:

使用须知 Notice for Use

使用上述模型需遵守AIGC模型开源特别条款

If you want to use this model, please read this document carefully and abide by the terms.

Downloads last month
40

Spaces using alibaba-pai/pai-diffusion-artist-large-zh 2