Skip to content

Commit

Permalink
Change min oversample to 1 (#2117)
Browse files Browse the repository at this point in the history
Signed-off-by: John Mazanec <jmazane@amazon.com>
(cherry picked from commit e3cf814)
  • Loading branch information
jmazanec15 authored and github-actions[bot] committed Sep 18, 2024
1 parent d96f227 commit b0ae86a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public final class RescoreContext {

public static final float DEFAULT_OVERSAMPLE_FACTOR = 1.0f;
public static final float MAX_OVERSAMPLE_FACTOR = 100.0f;
public static final float MIN_OVERSAMPLE_FACTOR = 0.0f;
public static final float MIN_OVERSAMPLE_FACTOR = 1.0f;

public static final int MAX_FIRST_PASS_RESULTS = 10000;

Expand Down

0 comments on commit b0ae86a

Please sign in to comment.