From: Sigbjørn Skjæret Date: Fri, 20 Sep 2024 06:38:10 +0000 (+0200) Subject: perplexity : do not escape input data by default (#9548) X-Git-Tag: upstream/0.0.4488~699 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=722ec1eb51ed53be2ab1ef31c6a1da8261803c71;p=pkg%2Fggml%2Fsources%2Fllama.cpp perplexity : do not escape input data by default (#9548) --- diff --git a/examples/perplexity/perplexity.cpp b/examples/perplexity/perplexity.cpp index 18e75a7a..cbd46665 100644 --- a/examples/perplexity/perplexity.cpp +++ b/examples/perplexity/perplexity.cpp @@ -1961,6 +1961,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_PERPLEXITY)) { return 1;