From f84dfd0e9c04f52ffcbb7b53e0524f2c3f26ed08 Mon Sep 17 00:00:00 2001 From: pingpongching Date: Mon, 5 Jun 2023 04:37:28 +0300 Subject: [PATCH] Change the default values for generation in GUI --- gpt4all-chat/qml/SettingsDialog.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gpt4all-chat/qml/SettingsDialog.qml b/gpt4all-chat/qml/SettingsDialog.qml index 1d46e509..1db1e4ab 100644 --- a/gpt4all-chat/qml/SettingsDialog.qml +++ b/gpt4all-chat/qml/SettingsDialog.qml @@ -33,12 +33,12 @@ Dialog { id: theme } - property real defaultTemperature: 0.28 - property real defaultTopP: 0.95 + property real defaultTemperature: 0.7 + property real defaultTopP: 0.1 property int defaultTopK: 40 property int defaultMaxLength: 4096 - property int defaultPromptBatchSize: 9 - property real defaultRepeatPenalty: 1.10 + property int defaultPromptBatchSize: 128 + property real defaultRepeatPenalty: 1.18 property int defaultRepeatPenaltyTokens: 64 property int defaultThreadCount: 0 property bool defaultSaveChats: false