Skip to content

Commit

Permalink
Remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
EricLBuehler committed Mar 12, 2024
1 parent 46ec498 commit f734d71
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/logits_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ impl LogitsProcessor {
let mut argsort_indices = (0..probs.len()).collect::<Vec<_>>();

// Sort by descending probability.
dbg!(&probs);
argsort_indices.sort_by(|&i, &j| probs[j].partial_cmp(&probs[i]).unwrap());

// Clamp smaller probabilities to zero.
Expand Down

0 comments on commit f734d71

Please sign in to comment.