We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d2e103 commit b677721Copy full SHA for b677721
src/llama-model.cpp
@@ -120,6 +120,7 @@ const char * llm_type_name(llm_type type) {
120
case LLM_TYPE_16B_A1B: return "16B.A1B";
121
case LLM_TYPE_21B_A3B: return "21B.A3B";
122
case LLM_TYPE_30B_A3B: return "30B.A3B";
123
+ case LLM_TYPE_80B_A3B: return "80B.A3B";
124
case LLM_TYPE_100B_A6B: return "100B.A6B";
125
case LLM_TYPE_106B_A12B: return "106B.A12B";
126
case LLM_TYPE_230B_A10B: return "230B.A10B";
@@ -2257,7 +2258,7 @@ void llama_model::load_hparams(llama_model_loader & ml) {
2257
2258
}
2259
2260
switch (hparams.n_layer) {
- case 80: type = LLM_TYPE_80B_A3B; break;
2261
+ case 48: type = LLM_TYPE_80B_A3B; break;
2262
default: type = LLM_TYPE_UNKNOWN;
2263
2264
} break;
0 commit comments