Update TextGen Deterministic.settings

This wasn't actually deterministic because despite `do_sample: false`, temperature was still taking effect, causing non-deterministic output. I fixed this and also adjusted repetition penalty to be like KoboldAI's Deterministic preset.
This commit is contained in:
SDS
2023-08-13 19:59:37 +02:00
committed by GitHub
parent 73f9117bea
commit 0a4f4a6c24

View File

@@ -1,13 +1,13 @@
{
"temp": 1,
"top_p": 1,
"top_k": 50,
"temp": 0,
"top_p": 0,
"top_k": 1,
"typical_p": 1,
"top_a": 0,
"tfs": 1,
"epsilon_cutoff": 0,
"eta_cutoff": 0,
"rep_pen": 1,
"rep_pen": 1.18,
"rep_pen_range": 0,
"no_repeat_ngram_size": 0,
"penalty_alpha": 0,