Skip to content

Commit 8f34d0d

Browse files
committed
tts : update default samplers
ggml-ci
1 parent 66e1e1a commit 8f34d0d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

examples/tts/tts.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,7 @@ int main(int argc, char ** argv) {
296296
params.n_ctx = 8192;
297297

298298
params.sampling.top_k = 4;
299-
params.sampling.penalty_repeat = 1.1;
300-
params.sampling.penalty_last_n = 8;
301-
params.sampling.samplers = { COMMON_SAMPLER_TYPE_TEMPERATURE, COMMON_SAMPLER_TYPE_TOP_K, };
299+
params.sampling.samplers = { COMMON_SAMPLER_TYPE_TOP_K, };
302300

303301
if (!common_params_parse(argc, argv, params, LLAMA_EXAMPLE_TTS, print_usage)) {
304302
return 1;

0 commit comments

Comments
 (0)