From: Georgi Gerganov Date: Wed, 18 Jan 2023 20:51:41 +0000 (+0200) Subject: main : we had accidentally disabled the temperature fallback .. (#291) X-Git-Tag: upstream/1.7.4~1604 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=f583e2d2f5a60e6ebf5bb2819ba4c4d348d41ea2;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp main : we had accidentally disabled the temperature fallback .. (#291) --- diff --git a/examples/main/main.cpp b/examples/main/main.cpp index 2e1e5197..68f427c7 100644 --- a/examples/main/main.cpp +++ b/examples/main/main.cpp @@ -658,7 +658,6 @@ int main(int argc, char ** argv) { wparams.greedy.best_of = params.best_of; wparams.beam_search.beam_size = params.beam_size; - wparams.temperature_inc = -1; wparams.prompt_tokens = prompt_tokens.empty() ? nullptr : prompt_tokens.data(); wparams.prompt_n_tokens = prompt_tokens.empty() ? 0 : prompt_tokens.size();