Skip to content

Commit

Permalink
Change min oversample to 1
Browse files Browse the repository at this point in the history
Signed-off-by: John Mazanec <[email protected]>
  • Loading branch information
jmazanec15 committed Sep 18, 2024
1 parent 004fcc0 commit e238fad
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 e238fad

Please sign in to comment.