]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
imatrix : disable prompt escape by default (#9543)
authorSigbjørn Skjæret <redacted>
Thu, 19 Sep 2024 07:58:14 +0000 (09:58 +0200)
committerGitHub <redacted>
Thu, 19 Sep 2024 07:58:14 +0000 (10:58 +0300)
examples/imatrix/imatrix.cpp

index 26528169978f8ebecca47644ad04e59f84b0e817..c8e273529e0fe42e235adb8b43512cc160be5449 100644 (file)
@@ -572,6 +572,7 @@ int main(int argc, char ** argv) {
 
     params.n_ctx = 512;
     params.logits_all = true;
+    params.escape = false;
 
     if (!gpt_params_parse(argc, argv, params, LLAMA_EXAMPLE_IMATRIX, print_usage)) {
         return 1;