diff --git a/examples/main/README.md b/examples/main/README.md index 1db03b991..952b6f752 100644 --- a/examples/main/README.md +++ b/examples/main/README.md @@ -212,7 +212,7 @@ Example usage: `--top-p 0.95` - `--min-p N`: Sets a minimum base probability threshold for token selection (default: 0.0). -Min-P sampling is a sampling method where the value represents the base required probability percentage. This value is adjusted based on the probability of the most likely token. For example, with a Min-P value set at 0.05 and the highest token probability being 90%, the minimum required threshold becomes 4.5%. This approach ensures a balance of quality and variety in the results. The default value is 0.05. +Min-P sampling is a sampling method where the value represents the base required probability percentage. This value is scaled down based on the probability of the most likely token. For example, with a Min-P value set at 0.05 and the highest token probability being 90%, the percentage requirement threshold becomes 4.5%. This approach ensures a balance of quality and variety in the results, and was designed as an alternative to improve upon Top P. The default value is 0.05. Example usage: `--min-p 0.05`