From 512cac630c8ca7c20964d9b488b5a93d159a55ae Mon Sep 17 00:00:00 2001 From: kalomaze <66376113+kalomaze@users.noreply.github.com> Date: Tue, 31 Oct 2023 11:32:01 -0500 Subject: [PATCH] added a bit more context to the README --- 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 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`