--- 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 --- # 一键生图最佳实践 提示词描述并优化后,增加以下触发词可达到较好效果 ```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 ```