We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87d852b commit 481f7a6Copy full SHA for 481f7a6
expose.cpp
@@ -174,10 +174,14 @@ extern "C"
174
{
175
printf("\n---\nIdentified as RWKV model: (ver %d)\nAttempting to Load...\n---\n", file_format);
176
}
177
- else
+ else if(file_format==FileFormat::GGUF_GENERIC)
178
179
printf("\n---\nIdentified as GGUF model: (ver %d)\nAttempting to Load...\n---\n", file_format);
180
181
+ else
182
+ {
183
+ printf("\n---\nUnidentified Model Encountered: (ver %d)\n---\n", file_format);
184
+ }
185
ModelLoadResult lr = gpttype_load_model(inputs, file_format, file_format_meta);
186
if (lr == ModelLoadResult::FAIL || lr == ModelLoadResult::RETRY_LOAD)
187
0 commit comments