From 3b58af26488d15e32a35db0d5cb637bee334bb31 Mon Sep 17 00:00:00 2001 From: kalomaze <66376113+kalomaze@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:19:49 -0500 Subject: [PATCH] forgot one small thing! --- examples/main/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/main/README.md b/examples/main/README.md index 568d9b7e1..a3428b487 100644 --- a/examples/main/README.md +++ b/examples/main/README.md @@ -210,7 +210,7 @@ Example usage: `--top-p 0.95` ### Min P Sampling -- `--min-p N`: Sets a minimum base probability threshold for token selection (default: 0.0). +- `--min-p N`: Sets a minimum base probability threshold for token selection (default: 0.05). The Min-P sampling method was designed as an alternative to Top-P, and aims to ensure a balance of quality and variety. The parameter *p* represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with *p*=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.