aboutsummaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/utils.h b/utils.h
index 20c42ba..bbe8fe8 100644
--- a/utils.h
+++ b/utils.h
@@ -18,7 +18,7 @@ struct gpt_params {
int32_t n_predict = 128; // new tokens to predict
// sampling parameters
- int32_t top_k = 40;
+ int32_t top_k = 40; // unused
float top_p = 0.95f;
float temp = 0.80f;
@@ -86,6 +86,13 @@ gpt_vocab::id gpt_sample_top_k_top_p(
double temp,
std::mt19937 & rng);
+gpt_vocab::id llama_sample_top_p(
+ const gpt_vocab & vocab,
+ const float * logits,
+ double top_p,
+ double temp,
+ std::mt19937 & rng);
+
//
// Quantization
//