]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
llava : fix typo in error message [no ci] (#9884)
authorDaniel Bevenius <redacted>
Wed, 16 Oct 2024 17:24:05 +0000 (19:24 +0200)
committerGitHub <redacted>
Wed, 16 Oct 2024 17:24:05 +0000 (20:24 +0300)
examples/llava/llava.cpp

index 8558c6bdcae0fa00e8e5a80c01128684f642cdc2..2c96973c8ed31b3cb134cf55af24e0af28351749 100644 (file)
@@ -432,7 +432,7 @@ struct llava_image_embed * llava_image_embed_make_with_bytes(struct clip_ctx * c
     bool image_embed_result = llava_image_embed_make_with_clip_img(ctx_clip, n_threads, img, &image_embed, &n_image_pos);
     if (!image_embed_result) {
         clip_image_u8_free(img);
-        LOG_ERR("%s: coulnd't embed the image\n", __func__);
+        LOG_ERR("%s: couldn't embed the image\n", __func__);
         return NULL;
     }