We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5794785 commit 9601dc8Copy full SHA for 9601dc8
tools/mtmd/clip.cpp
@@ -2812,9 +2812,9 @@ struct clip_model_loader {
2812
case PROJECTOR_TYPE_JANUS_PRO:
2813
{
2814
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);
+ model.mm_0_b = get_tensor(string_format(TN_LLAVA_PROJ, 0, "bias"));
2816
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);
+ model.mm_1_b = get_tensor(string_format(TN_LLAVA_PROJ, 1, "bias"));
2818
} break;
2819
default:
2820
GGML_ASSERT(false && "unknown projector type");
0 commit comments