are you happy editorconfig?

This commit is contained in:
M. Yusuf Sarıgöz 2023-10-11 08:21:29 +03:00
parent ab2158796f
commit 0409ae00b6

View file

@ -95,7 +95,7 @@ int main(int argc, char ** argv) {
int n_llama_embd = llama_n_embd(llama_get_model(ctx_llama)); int n_llama_embd = llama_n_embd(llama_get_model(ctx_llama));
if (n_img_embd != n_llama_embd) { if (n_img_embd != n_llama_embd) {
printf("%s: embedding dim of the multimodal projector (%d) is not equal to that of LLaMA (%d). Make sure that you use the correct mmproj file.\n", __func__, n_img_embd, n_llama_embd); printf("%s: embedding dim of the multimodal projector (%d) is not equal to that of LLaMA (%d). Make sure that you use the correct mmproj file.\n", __func__, n_img_embd, n_llama_embd);
llama_free(ctx_llama); llama_free(ctx_llama);
llama_free_model(model); llama_free_model(model);
llama_backend_free(); llama_backend_free();