File size: 2,329 Bytes
9366584 426f635 9366584 426f635 fb3a1d9 9366584 426f635 fb3a1d9 9366584 fb3a1d9 9366584 426f635 fb3a1d9 9366584 426f635 fb3a1d9 9366584 426f635 fb3a1d9 9366584 fb3a1d9 43d9d39 9366584 fb3a1d9 9366584 426f635 |
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
---
base_model:
- black-forest-labs/FLUX.1-dev
cover_images:
- _cover_images_/20241223203628_20.png
- _cover_images_/20241223181514_15.png
- _cover_images_/20241223155404_10.png
- _cover_images_/20241223133259_5.png
widget:
- text: "ChinesePainting,traditional chinese painting,traditional chinese ink painting, calligraphy on right, chinese characters, plain white background, bird perched, vibrant red flowers, bold brushstrokes, white background, calligraphy included"
output:
url: _cover_images_/20241223203628_20.png
- text: "ChinesePainting,traditional chinese painting,traditional chinese ink painting, calligraphy on right, chinese characters, plain white background, bird perched, vibrant red flowers, bold brushstrokes, white background, calligraphy included"
output:
url: _cover_images_/20241223181514_15.png
- text: "ChinesePainting,traditional chinese painting,traditional chinese ink painting, calligraphy on right, chinese characters, plain white background, bird perched, vibrant red flowers, bold brushstrokes, white background, calligraphy included"
output:
url: _cover_images_/20241223155404_10.png
- text: "ChinesePainting,traditional chinese painting,traditional chinese ink painting, calligraphy on right, chinese characters, plain white background, bird perched, vibrant red flowers, bold brushstrokes, white background, calligraphy included"
output:
url: _cover_images_/20241223133259_5.png
frameworks:
- Pytorch
license: apache-2.0
tags:
- LoRA
- text-to-image
tasks:
- text-to-image-synthesis
trigger_words:
- ChinesePainting
vision_foundation: FLUX_1
library_name: diffusers
---
<Gallery />
# 一键生图最佳实践
提示词描述并优化后,增加以下触发词可达到较好效果
```text
ChinesePainting,traditional chinese painting,traditional chinese ink painting, plain white background, bold brushstrokes, white background
```
您可以通过如下git clone命令,或者ModelScope SDK来下载模型
# SDK下载
```bash
## 安装ModelScope
pip install modelscope
```
```python
# SDK模型下载
from modelscope import snapshot_download
model_dir = snapshot_download('iSolver/TraditionalChinesePainting')
```
# Git下载
```
#Git模型下载
git clone https://www.modelscope.cn/iSolver/TraditionalChinesePainting.git
``` |