From f9dc033797d33c9cd2dcc1b3b9d05a5d48253a23 Mon Sep 17 00:00:00 2001 From: Minsoo Cheong Date: Sat, 23 Mar 2024 21:48:23 +0900 Subject: [PATCH] fix param definitions --- common/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.h b/common/common.h index 530a82133..31b971069 100644 --- a/common/common.h +++ b/common/common.h @@ -79,9 +79,9 @@ struct gpt_params { float yarn_beta_slow = 1.0f; // YaRN high correction dim int32_t yarn_orig_ctx = 0; // YaRN original context length float defrag_thold = -1.0f; // KV cache defragmentation threshold - std::vector context_files = {}; // context files to embed + std::vector context_files;// context files to embed int32_t chunk_size = 64; // chunk size for context embedding - std::string chunk_separator = "\n"; // chunk separator for context embedding + std::string chunk_separator = "\n"; // chunk separator for context embedding ggml_numa_strategy numa = GGML_NUMA_STRATEGY_DISABLED;