Upload folder using huggingface_hub
Browse files- README.md +24 -0
- README_from_modelscope.md +51 -0
- configuration.json +1 -0
- model.safetensors +3 -0
- model_ori.safetensors +3 -0
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
### The current model contributor has not provided a more detailed model introduction. Model files and weights can be accessed on the "Model Files" page.
|
| 5 |
+
#### You can download the model using the `git clone` command below or via the ModelScope SDK.
|
| 6 |
+
|
| 7 |
+
SDK Download
|
| 8 |
+
```bash
|
| 9 |
+
# Install ModelScope
|
| 10 |
+
pip install modelscope
|
| 11 |
+
```
|
| 12 |
+
```python
|
| 13 |
+
# SDK model download
|
| 14 |
+
from modelscope import snapshot_download
|
| 15 |
+
model_dir = snapshot_download('DiffSynth-Studio/LoRAFusionCraft')
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
Git Download
|
| 19 |
+
```
|
| 20 |
+
# Git model download
|
| 21 |
+
git clone https://www.modelscope.cn/DiffSynth-Studio/LoRAFusionCraft.git
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
<p style="color: lightgrey;">If you are the contributor of this model, we invite you to improve the model card content promptly by following the <a href="https://modelscope.cn/docs/ModelScope%E6%A8%A1%E5%9E%8B%E6%8E%A5%E5%85%A5%E6%B5%81%E7%A8%8B%E6%A6%82%E8%A7%88" style="color: lightgrey; text-decoration: underline;">model contribution guidelines</a>.</p>
|
README_from_modelscope.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
frameworks:
|
| 3 |
+
- Pytorch
|
| 4 |
+
license: Apache License 2.0
|
| 5 |
+
tasks:
|
| 6 |
+
- other
|
| 7 |
+
|
| 8 |
+
#model-type:
|
| 9 |
+
##如 gpt、phi、llama、chatglm、baichuan 等
|
| 10 |
+
#- gpt
|
| 11 |
+
|
| 12 |
+
#domain:
|
| 13 |
+
##如 nlp、cv、audio、multi-modal
|
| 14 |
+
#- nlp
|
| 15 |
+
|
| 16 |
+
#language:
|
| 17 |
+
##语言代码列表 https://help.aliyun.com/document_detail/215387.html?spm=a2c4g.11186623.0.0.9f8d7467kni6Aa
|
| 18 |
+
#- cn
|
| 19 |
+
|
| 20 |
+
#metrics:
|
| 21 |
+
##如 CIDEr、Blue、ROUGE 等
|
| 22 |
+
#- CIDEr
|
| 23 |
+
|
| 24 |
+
#tags:
|
| 25 |
+
##各种自定义,包括 pretrained、fine-tuned、instruction-tuned、RL-tuned 等训练方法和其他
|
| 26 |
+
#- pretrained
|
| 27 |
+
|
| 28 |
+
#tools:
|
| 29 |
+
##如 vllm、fastchat、llamacpp、AdaSeq 等
|
| 30 |
+
#- vllm
|
| 31 |
+
---
|
| 32 |
+
### 当前模型的贡献者未提供更加详细的模型介绍。模型文件和权重,可浏览“模型文件”页面获取。
|
| 33 |
+
#### 您可以通过如下git clone命令,或者ModelScope SDK来下载模型
|
| 34 |
+
|
| 35 |
+
SDK下载
|
| 36 |
+
```bash
|
| 37 |
+
#安装ModelScope
|
| 38 |
+
pip install modelscope
|
| 39 |
+
```
|
| 40 |
+
```python
|
| 41 |
+
#SDK模型下载
|
| 42 |
+
from modelscope import snapshot_download
|
| 43 |
+
model_dir = snapshot_download('DiffSynth-Studio/LoRAFusionCraft')
|
| 44 |
+
```
|
| 45 |
+
Git下载
|
| 46 |
+
```
|
| 47 |
+
#Git模型下载
|
| 48 |
+
git clone https://www.modelscope.cn/DiffSynth-Studio/LoRAFusionCraft.git
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
<p style="color: lightgrey;">如果您是本模型的贡献者,我们邀请您根据<a href="https://modelscope.cn/docs/ModelScope%E6%A8%A1%E5%9E%8B%E6%8E%A5%E5%85%A5%E6%B5%81%E7%A8%8B%E6%A6%82%E8%A7%88" style="color: lightgrey; text-decoration: underline;">模型贡献文档</a>,及时完善模型卡片内容。</p>
|
configuration.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"framework":"Pytorch","task":"other"}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:219bc42f37d47bb72d88f269983ce2862a7bbfdbe7c709c980971b7b90ef3fe4
|
| 3 |
+
size 109596256
|
model_ori.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9266a522aa452bdde120dc76173f6cc474080a6c7c4d6354efc18131c0d16170
|
| 3 |
+
size 109596256
|