1
0
Fork 0
mirror of https://gitlab.com/niansa/anyproc.git synced 2025-03-06 20:49:24 +01:00

Lowered translator temperature further

This commit is contained in:
niansa 2023-04-20 18:40:18 +02:00
parent 366289b81f
commit b686957316

View file

@ -151,7 +151,7 @@ class Translator : PyEval {
auto p = get_recommended_params();
p.top_k = 5;
p.top_p = 0.2f;
p.temp = 0.2f;
p.temp = 0.1f;
return p;
}