mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-01 11:12:50 +08:00
add qwq
Former-commit-id: 68a612115aebba51695d22be4397c16c86f3b40a
This commit is contained in:
parent
265a5821de
commit
1c3d86cd65
@ -202,7 +202,7 @@ Compared to ChatGLM's [P-Tuning](https://github.com/THUDM/ChatGLM2-6B/tree/main/
|
||||
| [Phi-3](https://huggingface.co/microsoft) | 4B/14B | phi |
|
||||
| [Phi-3-small](https://huggingface.co/microsoft) | 7B | phi_small |
|
||||
| [Pixtral](https://huggingface.co/mistralai) | 12B | pixtral |
|
||||
| [Qwen (1-2.5) (Code/Math/MoE)](https://huggingface.co/Qwen) | 0.5B/1.5B/3B/7B/14B/32B/72B/110B | qwen |
|
||||
| [Qwen/QwQ (1-2.5) (Code/Math/MoE)](https://huggingface.co/Qwen) | 0.5B/1.5B/3B/7B/14B/32B/72B/110B | qwen |
|
||||
| [Qwen2-VL](https://huggingface.co/Qwen) | 2B/7B/72B | qwen2_vl |
|
||||
| [Skywork o1](https://huggingface.co/Skywork) | 8B | skywork_o1 |
|
||||
| [StarCoder 2](https://huggingface.co/bigcode) | 3B/7B/15B | - |
|
||||
|
@ -202,7 +202,7 @@ https://github.com/user-attachments/assets/e6ce34b0-52d5-4f3e-a830-592106c4c272
|
||||
| [Phi-1.5/Phi-2](https://huggingface.co/microsoft) | 1.3B/2.7B | - |
|
||||
| [Phi-3](https://huggingface.co/microsoft) | 4B/7B/14B | phi |
|
||||
| [Pixtral](https://huggingface.co/mistralai) | 12B | pixtral |
|
||||
| [Qwen (1-2.5) (Code/Math/MoE)](https://huggingface.co/Qwen) | 0.5B/1.5B/3B/7B/14B/32B/72B/110B | qwen |
|
||||
| [Qwen/QwQ (1-2.5) (Code/Math/MoE)](https://huggingface.co/Qwen) | 0.5B/1.5B/3B/7B/14B/32B/72B/110B | qwen |
|
||||
| [Qwen2-VL](https://huggingface.co/Qwen) | 2B/7B/72B | qwen2_vl |
|
||||
| [Skywork o1](https://huggingface.co/Skywork) | 8B | skywork_o1 |
|
||||
| [StarCoder 2](https://huggingface.co/bigcode) | 3B/7B/15B | - |
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 165 KiB After Width: | Height: | Size: 166 KiB |
Binary file not shown.
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 168 KiB |
@ -1278,67 +1278,67 @@ register_model_group(
|
||||
models={
|
||||
"Qwen-1.8B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-1_8B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-1_8B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-1_8B",
|
||||
},
|
||||
"Qwen-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-7B",
|
||||
},
|
||||
"Qwen-14B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-14B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-14B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-14B",
|
||||
},
|
||||
"Qwen-72B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-72B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-72B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-72B",
|
||||
},
|
||||
"Qwen-1.8B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-1_8B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-1_8B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-1_8B-Chat",
|
||||
},
|
||||
"Qwen-7B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-7B-Chat",
|
||||
},
|
||||
"Qwen-14B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-14B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-14B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-14B-Chat",
|
||||
},
|
||||
"Qwen-72B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-72B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-72B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-72B-Chat",
|
||||
},
|
||||
"Qwen-1.8B-Chat-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-1_8B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-1_8B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-1_8B-Chat-Int8",
|
||||
},
|
||||
"Qwen-1.8B-Chat-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-1_8B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-1_8B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-1_8B-Chat-Int4",
|
||||
},
|
||||
"Qwen-7B-Chat-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-7B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-7B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-7B-Chat-Int8",
|
||||
},
|
||||
"Qwen-7B-Chat-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-7B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-7B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-7B-Chat-Int4",
|
||||
},
|
||||
"Qwen-14B-Chat-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-14B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-14B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-14B-Chat-Int8",
|
||||
},
|
||||
"Qwen-14B-Chat-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-14B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-14B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-14B-Chat-Int4",
|
||||
},
|
||||
"Qwen-72B-Chat-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-72B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-72B-Chat-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-72B-Chat-Int8",
|
||||
},
|
||||
"Qwen-72B-Chat-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen-72B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen-72B-Chat-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen-72B-Chat-Int4",
|
||||
},
|
||||
},
|
||||
template="qwen",
|
||||
@ -1349,147 +1349,147 @@ register_model_group(
|
||||
models={
|
||||
"Qwen1.5-0.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-0.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-0.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-0.5B",
|
||||
},
|
||||
"Qwen1.5-1.8B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-1.8B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-1.8B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-1.8B",
|
||||
},
|
||||
"Qwen1.5-4B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-4B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-4B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-4B",
|
||||
},
|
||||
"Qwen1.5-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-7B",
|
||||
},
|
||||
"Qwen1.5-14B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-14B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-14B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-14B",
|
||||
},
|
||||
"Qwen1.5-32B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-32B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-32B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-32B",
|
||||
},
|
||||
"Qwen1.5-72B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-72B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-72B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-72B",
|
||||
},
|
||||
"Qwen1.5-110B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-110B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-110B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-110B",
|
||||
},
|
||||
"Qwen1.5-MoE-A2.7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-MoE-A2.7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-MoE-A2.7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-MoE-A2.7B",
|
||||
},
|
||||
"Qwen1.5-0.5B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-0.5B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-0.5B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-0.5B-Chat",
|
||||
},
|
||||
"Qwen1.5-1.8B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-1.8B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-1.8B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-1.8B-Chat",
|
||||
},
|
||||
"Qwen1.5-4B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-4B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-4B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-4B-Chat",
|
||||
},
|
||||
"Qwen1.5-7B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-7B-Chat",
|
||||
},
|
||||
"Qwen1.5-14B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-14B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-14B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-14B-Chat",
|
||||
},
|
||||
"Qwen1.5-32B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-32B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-32B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-32B-Chat",
|
||||
},
|
||||
"Qwen1.5-72B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-72B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-72B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-72B-Chat",
|
||||
},
|
||||
"Qwen1.5-110B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-110B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-110B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-110B-Chat",
|
||||
},
|
||||
"Qwen1.5-MoE-A2.7B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-MoE-A2.7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-MoE-A2.7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-MoE-A2.7B-Chat",
|
||||
},
|
||||
"Qwen1.5-0.5B-Chat-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-0.5B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-0.5B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-0.5B-Chat-GPTQ-Int8",
|
||||
},
|
||||
"Qwen1.5-0.5B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-0.5B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-0.5B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-0.5B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-1.8B-Chat-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-1.8B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-1.8B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-1.8B-Chat-GPTQ-Int8",
|
||||
},
|
||||
"Qwen1.5-1.8B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-1.8B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-1.8B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-1.8B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-4B-Chat-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-4B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-4B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-4B-Chat-GPTQ-Int8",
|
||||
},
|
||||
"Qwen1.5-4B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-4B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-4B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-4B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-7B-Chat-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-7B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-7B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-7B-Chat-GPTQ-Int8",
|
||||
},
|
||||
"Qwen1.5-7B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-7B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-7B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-7B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-14B-Chat-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-14B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-14B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-14B-Chat-GPTQ-Int8",
|
||||
},
|
||||
"Qwen1.5-14B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-14B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-14B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-14B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-32B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-32B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-32B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-32B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-72B-Chat-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-72B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-72B-Chat-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-72B-Chat-GPTQ-Int8",
|
||||
},
|
||||
"Qwen1.5-72B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-72B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-72B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-72B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-110B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-110B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-110B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-110B-Chat-AWQ",
|
||||
},
|
||||
"Qwen1.5-MoE-A2.7B-Chat-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen1.5-MoE-A2.7B-Chat-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen1.5-MoE-A2.7B-Chat-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen1.5-MoE-A2.7B-Chat-GPTQ-Int4",
|
||||
},
|
||||
"CodeQwen1.5-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/CodeQwen1.5-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/CodeQwen1.5-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/CodeQwen1.5-7B",
|
||||
},
|
||||
"CodeQwen1.5-7B-Chat": {
|
||||
DownloadSource.DEFAULT: "Qwen/CodeQwen1.5-7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "qwen/CodeQwen1.5-7B-Chat",
|
||||
DownloadSource.MODELSCOPE: "Qwen/CodeQwen1.5-7B-Chat",
|
||||
},
|
||||
"CodeQwen1.5-7B-Chat-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/CodeQwen1.5-7B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/CodeQwen1.5-7B-Chat-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/CodeQwen1.5-7B-Chat-AWQ",
|
||||
},
|
||||
},
|
||||
template="qwen",
|
||||
@ -1500,122 +1500,122 @@ register_model_group(
|
||||
models={
|
||||
"Qwen2-0.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-0.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-0.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-0.5B",
|
||||
},
|
||||
"Qwen2-1.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-1.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-1.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-1.5B",
|
||||
},
|
||||
"Qwen2-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-7B",
|
||||
},
|
||||
"Qwen2-72B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-72B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-72B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-72B",
|
||||
},
|
||||
"Qwen2-MoE-57B-A14B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-57B-A14B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-57B-A14B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-57B-A14B",
|
||||
},
|
||||
"Qwen2-0.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-0.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-0.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-0.5B-Instruct",
|
||||
DownloadSource.OPENMIND: "LlamaFactory/Qwen2-0.5B-Instruct",
|
||||
},
|
||||
"Qwen2-1.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-1.5B-Instruct",
|
||||
DownloadSource.OPENMIND: "LlamaFactory/Qwen2-1.5B-Instruct",
|
||||
},
|
||||
"Qwen2-7B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-7B-Instruct",
|
||||
DownloadSource.OPENMIND: "LlamaFactory/Qwen2-7B-Instruct",
|
||||
},
|
||||
"Qwen2-72B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-72B-Instruct",
|
||||
},
|
||||
"Qwen2-MoE-57B-A14B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-57B-A14B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-57B-A14B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-57B-A14B-Instruct",
|
||||
},
|
||||
"Qwen2-0.5B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-0.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-0.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-0.5B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-0.5B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-0.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-0.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-0.5B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-0.5B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-0.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-0.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-0.5B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2-1.5B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-1.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-1.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-1.5B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-1.5B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-1.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-1.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-1.5B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-1.5B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-1.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-1.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-1.5B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2-7B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-7B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-7B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-7B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-7B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-7B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-7B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-7B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-7B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-7B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-7B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-7B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2-72B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-72B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-72B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-72B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-72B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-72B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-72B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-72B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-72B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-72B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-72B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-72B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2-57B-A14B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-57B-A14B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-57B-A14B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-57B-A14B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-Math-1.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-Math-1.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-Math-1.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-Math-1.5B",
|
||||
},
|
||||
"Qwen2-Math-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-Math-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-Math-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-Math-7B",
|
||||
},
|
||||
"Qwen2-Math-72B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-Math-72B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-Math-72B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-Math-72B",
|
||||
},
|
||||
"Qwen2-Math-1.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-Math-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-Math-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-Math-1.5B-Instruct",
|
||||
},
|
||||
"Qwen2-Math-7B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-Math-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-Math-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-Math-7B-Instruct",
|
||||
},
|
||||
"Qwen2-Math-72B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-Math-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-Math-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-Math-72B-Instruct",
|
||||
},
|
||||
},
|
||||
template="qwen",
|
||||
@ -1626,215 +1626,219 @@ register_model_group(
|
||||
models={
|
||||
"Qwen2.5-0.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-0.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-0.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-0.5B",
|
||||
},
|
||||
"Qwen2.5-1.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-1.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-1.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-1.5B",
|
||||
},
|
||||
"Qwen2.5-3B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-3B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-3B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-3B",
|
||||
},
|
||||
"Qwen2.5-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-7B",
|
||||
},
|
||||
"Qwen2.5-14B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-14B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-14B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-14B",
|
||||
},
|
||||
"Qwen2.5-32B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-32B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-32B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-32B",
|
||||
},
|
||||
"Qwen2.5-72B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-72B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-72B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-72B",
|
||||
},
|
||||
"Qwen2.5-0.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-0.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-0.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-0.5B-Instruct",
|
||||
},
|
||||
"Qwen2.5-1.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-1.5B-Instruct",
|
||||
},
|
||||
"Qwen2.5-3B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-3B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-3B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-3B-Instruct",
|
||||
},
|
||||
"Qwen2.5-7B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-7B-Instruct",
|
||||
},
|
||||
"Qwen2.5-14B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-14B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-14B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-14B-Instruct",
|
||||
},
|
||||
"Qwen2.5-32B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-32B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-32B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-32B-Instruct",
|
||||
},
|
||||
"Qwen2.5-72B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-72B-Instruct",
|
||||
},
|
||||
"Qwen2.5-0.5B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-0.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-0.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-0.5B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-0.5B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-0.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-0.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-0.5B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-0.5B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-0.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-0.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-0.5B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-1.5B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-1.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-1.5B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-1.5B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-1.5B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-1.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-1.5B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-1.5B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-1.5B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-1.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-1.5B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-1.5B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-3B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-3B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-3B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-3B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-3B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-3B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-3B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-3B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-3B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-3B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-3B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-3B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-7B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-7B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-7B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-7B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-7B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-7B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-7B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-7B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-7B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-7B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-7B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-7B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-14B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-14B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-14B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-14B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-14B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-14B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-14B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-14B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-14B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-14B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-14B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-14B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-32B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-32B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-32B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-32B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-32B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-32B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-32B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-32B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-32B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-32B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-32B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-32B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-72B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-72B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-72B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-72B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2.5-72B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-72B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-72B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-72B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2.5-72B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-72B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-72B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-72B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2.5-Coder-0.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-0.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-0.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-0.5B",
|
||||
},
|
||||
"Qwen2.5-Coder-1.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-1.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-1.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-1.5B",
|
||||
},
|
||||
"Qwen2.5-Coder-3B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-3B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-3B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-3B",
|
||||
},
|
||||
"Qwen2.5-Coder-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-7B",
|
||||
},
|
||||
"Qwen2.5-Coder-14B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-14B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-14B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-14B",
|
||||
},
|
||||
"Qwen2.5-Coder-32B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-32B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-32B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-32B",
|
||||
},
|
||||
"Qwen2.5-Coder-0.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-0.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-0.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-0.5B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Coder-1.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-1.5B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Coder-3B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-3B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-3B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-3B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Coder-7B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-7B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Coder-14B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-14B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-14B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-14B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Coder-32B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Coder-32B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-32B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-32B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Math-1.5B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Math-1.5B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Math-1.5B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Math-1.5B",
|
||||
},
|
||||
"Qwen2.5-Math-7B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Math-7B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Math-7B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Math-7B",
|
||||
},
|
||||
"Qwen2.5-Math-72B": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Math-72B",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Math-72B",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Math-72B",
|
||||
},
|
||||
"Qwen2.5-Math-1.5B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Math-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-1.5B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-1.5B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Math-7B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Math-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-7B-Instruct",
|
||||
},
|
||||
"Qwen2.5-Math-72B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2.5-Math-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2.5-Coder-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2.5-Coder-72B-Instruct",
|
||||
},
|
||||
"QwQ-32B-Preview-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/QwQ-32B-Preview",
|
||||
DownloadSource.MODELSCOPE: "Qwen/QwQ-32B-Preview",
|
||||
},
|
||||
},
|
||||
template="qwen",
|
||||
@ -1845,53 +1849,53 @@ register_model_group(
|
||||
models={
|
||||
"Qwen2-VL-2B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-2B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-2B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-2B-Instruct",
|
||||
DownloadSource.OPENMIND: "LlamaFactory/Qwen2-VL-2B-Instruct",
|
||||
},
|
||||
"Qwen2-VL-7B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-7B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-7B-Instruct",
|
||||
DownloadSource.OPENMIND: "LlamaFactory/Qwen2-VL-7B-Instruct",
|
||||
},
|
||||
"Qwen2-VL-72B-Instruct": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-72B-Instruct",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-72B-Instruct",
|
||||
},
|
||||
"Qwen2-VL-2B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-2B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-2B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-2B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-VL-2B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-2B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-2B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-2B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-VL-2B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-2B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-2B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-2B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2-VL-7B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-7B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-7B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-7B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-VL-7B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-7B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-7B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-7B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-VL-7B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-7B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-7B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-7B-Instruct-AWQ",
|
||||
},
|
||||
"Qwen2-VL-72B-Instruct-GPTQ-Int8": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-72B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-72B-Instruct-GPTQ-Int8",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-72B-Instruct-GPTQ-Int8",
|
||||
},
|
||||
"Qwen2-VL-72B-Instruct-GPTQ-Int4": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-72B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-72B-Instruct-GPTQ-Int4",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-72B-Instruct-GPTQ-Int4",
|
||||
},
|
||||
"Qwen2-VL-72B-Instruct-AWQ": {
|
||||
DownloadSource.DEFAULT: "Qwen/Qwen2-VL-72B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "qwen/Qwen2-VL-72B-Instruct-AWQ",
|
||||
DownloadSource.MODELSCOPE: "Qwen/Qwen2-VL-72B-Instruct-AWQ",
|
||||
},
|
||||
},
|
||||
template="qwen2_vl",
|
||||
|
Loading…
x
Reference in New Issue
Block a user