We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1db6b7 commit 42d87c4Copy full SHA for 42d87c4
1 file changed
examples/qualcomm/oss_scripts/llama/qnn_multimodal_runner.cpp
@@ -177,14 +177,15 @@ void start_multimodal_runner(
177
}
178
};
179
executorch::extension::llm::GenerationConfig config{
180
- true,
181
- false,
182
- -1,
183
184
- FLAGS_seq_len,
185
- static_cast<float>(FLAGS_temperature),
186
- 0,
187
- 0};
+ .echo = true,
+ .ignore_eos = false,
+ .max_new_tokens = -1,
+ .warming = false,
+ .seq_len = FLAGS_seq_len,
+ .temperature = static_cast<float>(FLAGS_temperature),
+ .num_bos = 0,
+ .num_eos = 0,
188
+ };
189
190
// 1. [Multimodal] Get raw files from input_list.txt
191
std::vector<std::string> audio_raw_files;
0 commit comments