summaryrefslogtreecommitdiff
path: root/examples/speculative
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2023-10-28 14:23:11 +0300
committerGitHub <noreply@github.com>2023-10-28 14:23:11 +0300
commitee1a0ec9cb367ba41d138134795cbbbe93d2bf1c (patch)
tree04111cbd66f34c6cc986e70bb47b96b39828e0f2 /examples/speculative
parent177461104b454163473dced2a5038f4e016cdb7e (diff)
llama : add option for greedy sampling with probs (#3813)
* llama : add option for greedy sampling with probs * llama : add comment about llama_sample_token_greedy() missing probs * sampling : temp == 0.0 -> no probs, temp < 0.0 -> probs
Diffstat (limited to 'examples/speculative')
-rw-r--r--examples/speculative/speculative.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/speculative/speculative.cpp b/examples/speculative/speculative.cpp
index f921b784..323c7465 100644
--- a/examples/speculative/speculative.cpp
+++ b/examples/speculative/speculative.cpp
@@ -148,7 +148,7 @@ int main(int argc, char ** argv) {
std::vector<seq_draft> drafts(n_seq_dft);
params.sparams.grammar.clear(); // the draft samplers will copy the target sampler's grammar
- params.sparams.temp = std::max(0.01f, params.sparams.temp);
+ params.sparams.temp = -1.0f; // force greedy sampling with probs for the draft model
for (int s = 0; s < n_seq_dft; ++s) {
drafts[s].ctx_sampling = llama_sampling_init(params.sparams);