fix: correct VAETKI model type naming

This commit is contained in:
suhyun-hwang 2026-01-10 20:54:16 +09:00
parent 5d08f3e87b
commit db84faff3a
2 changed files with 4 additions and 2 deletions

View File

@ -126,6 +126,7 @@ const char * llm_type_name(llm_type type) {
case LLM_TYPE_31B_A3_5B: return "31B.A3.5B";
case LLM_TYPE_80B_A3B: return "80B.A3B";
case LLM_TYPE_100B_A6B: return "100B.A6B";
case LLM_TYPE_100B_A10B: return "100B.A10B";
case LLM_TYPE_102B_A12B: return "102B.A12B";
case LLM_TYPE_106B_A12B: return "106B.A12B";
case LLM_TYPE_230B_A10B: return "230B.A10B";
@ -1164,8 +1165,8 @@ void llama_model::load_hparams(llama_model_loader & ml) {
}
switch (hparams.n_layer) {
case 24: type = LLM_TYPE_7B; break;
case 48: type = LLM_TYPE_120B; break;
case 24: type = LLM_TYPE_7B_A1B; break;
case 48: type = LLM_TYPE_100B_A10B; break;
default: type = LLM_TYPE_UNKNOWN;
}
} break;

View File

@ -120,6 +120,7 @@ enum llm_type {
LLM_TYPE_31B_A3_5B,
LLM_TYPE_80B_A3B, // Qwen3 Next
LLM_TYPE_100B_A6B,
LLM_TYPE_100B_A10B, // VAETKI
LLM_TYPE_102B_A12B, // Solar-Open
LLM_TYPE_106B_A12B, // GLM-4.5-Air
LLM_TYPE_230B_A10B, // Minimax M2