Spaces:
Sleeping
Sleeping
Clean model description
Browse files
app.py
CHANGED
|
@@ -22,50 +22,53 @@ cancel_event = threading.Event()
|
|
| 22 |
# ------------------------------
|
| 23 |
# Torch-Compatible Model Definitions with Adjusted Descriptions
|
| 24 |
# ------------------------------
|
|
|
|
|
|
|
|
|
|
| 25 |
MODELS = {
|
| 26 |
-
"Taiwan-tinyllama-v1.0-chat
|
| 27 |
"repo_id": "DavidLanz/Taiwan-tinyllama-v1.0-chat",
|
| 28 |
-
"description": "Taiwan-tinyllama-v1.0-chat
|
| 29 |
},
|
| 30 |
-
"Llama-3.2-Taiwan-3B-Instruct
|
| 31 |
"repo_id": "https://huggingface.co/lianghsun/Llama-3.2-Taiwan-3B-Instruct",
|
| 32 |
-
"description": "Llama-3.2-Taiwan-3B-Instruct
|
| 33 |
},
|
| 34 |
-
"MiniCPM3-4B
|
| 35 |
"repo_id": "openbmb/MiniCPM3-4B",
|
| 36 |
-
"description": "MiniCPM3-4B
|
| 37 |
},
|
| 38 |
-
"Qwen2.5-3B-Instruct
|
| 39 |
"repo_id": "Qwen/Qwen2.5-3B-Instruct",
|
| 40 |
-
"description": "Qwen2.5-3B-Instruct
|
| 41 |
},
|
| 42 |
-
"Qwen2.5-7B-Instruct
|
| 43 |
"repo_id": "Qwen/Qwen2.5-7B-Instruct",
|
| 44 |
-
"description": "Qwen2.5-7B-Instruct
|
| 45 |
},
|
| 46 |
-
"Gemma-3-4B-IT
|
| 47 |
"repo_id": "unsloth/gemma-3-4b-it",
|
| 48 |
-
"description": "Gemma-3-4B-IT
|
| 49 |
},
|
| 50 |
-
"Phi-4-mini-Instruct
|
| 51 |
"repo_id": "unsloth/Phi-4-mini-instruct",
|
| 52 |
-
"description": "Phi-4-mini-Instruct
|
| 53 |
},
|
| 54 |
-
"Meta-Llama-3.1-8B-Instruct
|
| 55 |
"repo_id": "MaziyarPanahi/Meta-Llama-3.1-8B-Instruct",
|
| 56 |
-
"description": "Meta-Llama-3.1-8B-Instruct
|
| 57 |
},
|
| 58 |
-
"DeepSeek-R1-Distill-Llama-8B
|
| 59 |
"repo_id": "unsloth/DeepSeek-R1-Distill-Llama-8B",
|
| 60 |
-
"description": "DeepSeek-R1-Distill-Llama-8B
|
| 61 |
},
|
| 62 |
-
"Mistral-7B-Instruct-v0.3
|
| 63 |
"repo_id": "MaziyarPanahi/Mistral-7B-Instruct-v0.3",
|
| 64 |
-
"description": "Mistral-7B-Instruct-v0.3
|
| 65 |
},
|
| 66 |
-
"Qwen2.5-Coder-7B-Instruct
|
| 67 |
"repo_id": "Qwen/Qwen2.5-Coder-7B-Instruct",
|
| 68 |
-
"description": "Qwen2.5-Coder-7B-Instruct
|
| 69 |
},
|
| 70 |
}
|
| 71 |
|
|
|
|
| 22 |
# ------------------------------
|
| 23 |
# Torch-Compatible Model Definitions with Adjusted Descriptions
|
| 24 |
# ------------------------------
|
| 25 |
+
# ------------------------------
|
| 26 |
+
# Torch-Compatible Model Definitions (Cleaned)
|
| 27 |
+
# ------------------------------
|
| 28 |
MODELS = {
|
| 29 |
+
"Taiwan-tinyllama-v1.0-chat": {
|
| 30 |
"repo_id": "DavidLanz/Taiwan-tinyllama-v1.0-chat",
|
| 31 |
+
"description": "Taiwan-tinyllama-v1.0-chat"
|
| 32 |
},
|
| 33 |
+
"Llama-3.2-Taiwan-3B-Instruct": {
|
| 34 |
"repo_id": "https://huggingface.co/lianghsun/Llama-3.2-Taiwan-3B-Instruct",
|
| 35 |
+
"description": "Llama-3.2-Taiwan-3B-Instruct"
|
| 36 |
},
|
| 37 |
+
"MiniCPM3-4B": {
|
| 38 |
"repo_id": "openbmb/MiniCPM3-4B",
|
| 39 |
+
"description": "MiniCPM3-4B"
|
| 40 |
},
|
| 41 |
+
"Qwen2.5-3B-Instruct": {
|
| 42 |
"repo_id": "Qwen/Qwen2.5-3B-Instruct",
|
| 43 |
+
"description": "Qwen2.5-3B-Instruct"
|
| 44 |
},
|
| 45 |
+
"Qwen2.5-7B-Instruct": {
|
| 46 |
"repo_id": "Qwen/Qwen2.5-7B-Instruct",
|
| 47 |
+
"description": "Qwen2.5-7B-Instruct"
|
| 48 |
},
|
| 49 |
+
"Gemma-3-4B-IT": {
|
| 50 |
"repo_id": "unsloth/gemma-3-4b-it",
|
| 51 |
+
"description": "Gemma-3-4B-IT"
|
| 52 |
},
|
| 53 |
+
"Phi-4-mini-Instruct": {
|
| 54 |
"repo_id": "unsloth/Phi-4-mini-instruct",
|
| 55 |
+
"description": "Phi-4-mini-Instruct"
|
| 56 |
},
|
| 57 |
+
"Meta-Llama-3.1-8B-Instruct": {
|
| 58 |
"repo_id": "MaziyarPanahi/Meta-Llama-3.1-8B-Instruct",
|
| 59 |
+
"description": "Meta-Llama-3.1-8B-Instruct"
|
| 60 |
},
|
| 61 |
+
"DeepSeek-R1-Distill-Llama-8B": {
|
| 62 |
"repo_id": "unsloth/DeepSeek-R1-Distill-Llama-8B",
|
| 63 |
+
"description": "DeepSeek-R1-Distill-Llama-8B"
|
| 64 |
},
|
| 65 |
+
"Mistral-7B-Instruct-v0.3": {
|
| 66 |
"repo_id": "MaziyarPanahi/Mistral-7B-Instruct-v0.3",
|
| 67 |
+
"description": "Mistral-7B-Instruct-v0.3"
|
| 68 |
},
|
| 69 |
+
"Qwen2.5-Coder-7B-Instruct": {
|
| 70 |
"repo_id": "Qwen/Qwen2.5-Coder-7B-Instruct",
|
| 71 |
+
"description": "Qwen2.5-Coder-7B-Instruct"
|
| 72 |
},
|
| 73 |
}
|
| 74 |
|