From afa160d5cc40c2004967c43799ee6a731c9b2df6 Mon Sep 17 00:00:00 2001 From: Andras Salamon Date: Mon, 8 May 2023 13:04:15 +0100 Subject: [PATCH] fix typo in default model path --- examples/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/common.h b/examples/common.h index 842e1516f..0c7c045cc 100644 --- a/examples/common.h +++ b/examples/common.h @@ -39,7 +39,7 @@ struct gpt_params { float mirostat_tau = 5.00f; // target entropy float mirostat_eta = 0.10f; // learning rate - std::string model = "models/lamma-7B/ggml-model.bin"; // model path + std::string model = "models/llama-7B/ggml-model.bin"; // model path std::string prompt = ""; std::string path_session = ""; // path to file for saving/loading model eval state std::string input_prefix = ""; // string to prefix user inputs with