Files
Illustrious-XL/README.md
2024-12-18 03:52:52 +01:00

27 lines
509 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
base_model: AI-ModelScope/stable-diffusion-xl-base-1.0
cover_images:
- _cover_images_/cover.png
frameworks:
- Pytorch
license: Apache License 2.0
tags:
- Checkpoint
- text-to-image
tasks:
- text-to-image-synthesis
vision_foundation: SD_XL
---
#### 您可以通过如下git clone命令或者ModelScope SDK来下载模型
SDK下载
```bash
#安装ModelScope
pip install modelscope
```
```python
#SDK模型下载
from modelscope import snapshot_download
model_dir = snapshot_download('模型路径')
```