We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad1923a commit aefcffaCopy full SHA for aefcffa
src/llama-model.cpp
@@ -790,8 +790,8 @@ void llama_model::load_hparams(llama_model_loader & ml) {
790
ml.get_key(LLM_KV_ATTENTION_LAYERNORM_RMS_EPS, hparams.f_norm_rms_eps);
791
792
switch (hparams.n_layer) {
793
- case 32: model.type = e_model::MODEL_16x3_8B; break;
794
- default: model.type = e_model::MODEL_UNKNOWN;
+ case 32: type = LLM_TYPE_16x3_8B; break;
+ default: type = LLM_TYPE_UNKNOWN;
795
}
796
} break;
797
case LLM_ARCH_PLAMO:
0 commit comments