fix: typos in documentation files (#11791)

* Update ggml.c

* Update arg.cpp

* Update speculative.h
This commit is contained in:
Maxim Evtush 2025-02-10 23:21:31 +01:00 committed by GitHub
parent 81732619fd
commit 7b891bdc86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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);