From 6feb6b399c7ec8392da06748b1c25825c12dacae Mon Sep 17 00:00:00 2001 From: MaggotHATE Date: Tue, 8 Oct 2024 21:15:37 +0500 Subject: [PATCH] Update dump info in common --- common/common.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/common.cpp b/common/common.cpp index 00d3d707f..9522f54cb 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -2088,9 +2088,9 @@ void yaml_dump_non_result_info(FILE * stream, const gpt_params & params, const l fprintf(stream, "top_k: %d # default: 40\n", sparams.top_k); fprintf(stream, "top_p: %f # default: 0.95\n", sparams.top_p); fprintf(stream, "min_p: %f # default: 0.0\n", sparams.min_p); - fprintf(stream, "xtc_p: %f # default: 0.0\n", sparams.xtc_p); - fprintf(stream, "xtc_t: %f # default: 0.0\n", sparams.xtc_t); - fprintf(stream, "xtc_t_max: %f # default: 0.0\n", sparams.xtc_t_max); + fprintf(stream, "xtc_p: %f # default: 0.5\n", sparams.xtc_p); + fprintf(stream, "xtc_t: %f # default: 0.1\n", sparams.xtc_t); + fprintf(stream, "xtc_t_max: %f # default: 1.0\n", sparams.xtc_t_max); fprintf(stream, "typ_p: %f # default: 1.0\n", sparams.typ_p); fprintf(stream, "verbose_prompt: %s # default: false\n", params.verbose_prompt ? "true" : "false"); fprintf(stream, "display_prompt: %s # default: true\n", params.display_prompt ? "true" : "false");