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 45cdb7f commit f3605b9Copy full SHA for f3605b9
tools/llava/mtmd.cpp
@@ -142,7 +142,7 @@ mtmd_context * mtmd_init_from_file(const char * mmproj_fname,
142
143
//// TEST, TO BE REMOVED LATER
144
clip_image_f32_batch * batch = clip_image_f32_batch_init();
145
- std::vector<float> mel(128 * 1024);
+ std::vector<float> mel(128 * 1024, 0.2);
146
clip_image_f32_batch_add_mel(batch, 128, 1024, mel.data());
147
std::vector<float> output(64 * 2048, 0);
148
clip_image_batch_encode(test->ctx_clip, 8, batch, output.data());
0 commit comments