Skip to content

Commit

Permalink
Change min oversample to 1 (#2117) (#2119)
Browse files Browse the repository at this point in the history
Signed-off-by: John Mazanec <jmazane@amazon.com>
(cherry picked from commit e3cf814)

Co-authored-by: John Mazanec <jmazane@amazon.com>
  • Loading branch information
opensearch-trigger-bot[bot] and jmazanec15 committed Sep 18, 2024
1 parent b4896e3 commit 097278b
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 097278b

Please sign in to comment.