Skip to content

Commit d5e50aa

Browse files
committed
add warn about degraded quality
1 parent 186d7a8 commit d5e50aa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/mtmd/clip.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2070,6 +2070,10 @@ struct clip_model_loader {
20702070
LOG_INF("%s: ffn_op: %s\n", __func__, log_ffn_op.c_str());
20712071
LOG_INF("%s: model size: %.2f MiB\n", __func__, model_size / 1024.0 / 1024.0);
20722072
LOG_INF("%s: metadata size: %.2f MiB\n", __func__, ggml_get_mem_size(ctx_meta.get()) / 1024.0 / 1024.0);
2073+
2074+
if (ctx_clip.proj_type == PROJECTOR_TYPE_LLAMA4) {
2075+
LOG_WRN("%s: llama 4 vision is known to have degraded quality: https://github.com/ggml-org/llama.cpp/pull/13282\n", __func__);
2076+
}
20732077
}
20742078
}
20752079

0 commit comments

Comments
 (0)