1
0
Fork 0
mirror of https://gitlab.com/niansa/discord_llama.git synced 2025-03-06 20:48:25 +01:00

Oops, too much temperature

This commit is contained in:
niansa 2023-04-01 18:42:56 +02:00
parent 07e0c4d80a
commit e80d6446d1

View file

@ -115,7 +115,9 @@ class Bot {
// Create params
LM::Inference::Params params;
params.use_mlock = false;
params.temp = 8.0f;
params.temp = 0.74f;
params.n_repeat_last = 128;
params.repeat_penalty = 1.273333334f;
// Make sure llm is initialized
{
std::unique_lock L(llm_lock);