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 217d8d7 commit aaabe2eCopy full SHA for aaabe2e
llama.cpp
@@ -3769,14 +3769,19 @@ static std::string llama_model_ftype_name(llama_ftype ftype) {
3769
3770
static const char * llama_model_type_name(e_model type) {
3771
switch (type) {
3772
+ case MODEL_17M: return "17M";
3773
case MODEL_22M: return "22M";
3774
case MODEL_33M: return "33M";
3775
case MODEL_109M: return "109M";
3776
case MODEL_137M: return "137M";
3777
+ case MODEL_270M: return "270M";
3778
+ case MODEL_335M: return "335M";
3779
+ case MODEL_450M: return "450M";
3780
case MODEL_0_5B: return "0.5B";
3781
case MODEL_1B: return "1B";
3782
case MODEL_2B: return "2B";
3783
case MODEL_3B: return "3B";
3784
+ case MODEL_4B: return "4B";
3785
case MODEL_7B: return "7B";
3786
case MODEL_8B: return "8B";
3787
case MODEL_12B: return "12B";
0 commit comments