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 1c6ec2a commit 3709961Copy full SHA for 3709961
src/llama-model.cpp
@@ -1816,6 +1816,7 @@ void llama_model::load_hparams(llama_model_loader & ml) {
1816
1817
switch (hparams.n_layer) {
1818
case 20: type = LLM_TYPE_16B; break;
1819
+ case 32: type = LLM_TYPE_100B; break;
1820
default: type = LLM_TYPE_UNKNOWN;
1821
}
1822
} break;
src/llama-model.h
@@ -80,6 +80,7 @@ enum llm_type {
80
LLM_TYPE_40B,
81
LLM_TYPE_65B,
82
LLM_TYPE_70B,
83
+ LLM_TYPE_100B,
84
LLM_TYPE_120B,
85
LLM_TYPE_142B,
86
LLM_TYPE_236B,
0 commit comments