LoRA of Chinese Diffusion Model (Poem)
简介 Brief Introduction
我们开源了适配中文 Diffusion 模型 alibaba-pai/pai-diffusion-artist-large-zh
的 LoRA,您可以输入中国古诗词,模型将会根据诗句生成古风水墨配图。
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.
- Github: EasyNLP
使用 Usage
from diffusers import StableDiffusionPipeline
model_id = "alibaba-pai/pai-diffusion-artist-large-zh"
pipe = StableDiffusionPipeline.from_pretrained(model_id)
pipe.unet.load_attn_procs("alibaba-pai/pai-diffusion-artist-large-zh-lora-poem")
pipe = pipe.to("cuda")
prompt = "大漠孤烟直,长河落日圆"
image = pipe(prompt, cross_attention_kwargs={"scale": 0.4}).images[0]
image.save("result.png")
作品展示 Gallery
使用须知 Notice for Use
使用上述模型需遵守AIGC模型开源特别条款。
If you want to use this model, please read this document carefully and abide by the terms.
- Downloads last month
- 5
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.