From c7385eb24d424c7253048887b6e126ded19fa2ed Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Mon, 10 Feb 2025 14:13:47 +0100 Subject: [PATCH] Update speculative.h --- common/speculative.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/speculative.h b/common/speculative.h index 50ec03446..2baf99fc7 100644 --- a/common/speculative.h +++ b/common/speculative.h @@ -9,7 +9,7 @@ struct common_speculative_params { int n_draft = 16; // max drafted tokens int n_reuse = 256; - float p_min = 0.9f; // min probabiliy required to accept a token in the draft + float p_min = 0.9f; // min probability required to accept a token in the draft }; struct common_speculative * common_speculative_init(struct llama_context * ctx_dft);