Skip to content

Commit 9601dc8

Browse files
ravenousengxson
andauthored
Update tools/mtmd/clip.cpp
Co-authored-by: Xuan-Son Nguyen <[email protected]>
1 parent 5794785 commit 9601dc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/mtmd/clip.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2812,9 +2812,9 @@ struct clip_model_loader {
28122812
case PROJECTOR_TYPE_JANUS_PRO:
28132813
{
28142814
model.mm_0_w = get_tensor(string_format(TN_LLAVA_PROJ, 0, "weight"));
2815-
model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"), false);
2815+
model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
28162816
model.mm_1_w = get_tensor(string_format(TN_LLAVA_PROJ, 1, "weight"));
2817-
model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"), false);
2817+
model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"));
28182818
} break;
28192819
default:
28202820
GGML_ASSERT(false && "unknown projector type");

0 commit comments

Comments
 (0)