Skip to content

Commit

Permalink
Fixing Java tests errors
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-rossi29 committed Apr 29, 2019
1 parent 53ac796 commit c0f7471
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ public void testCBADFExplore() throws IOException {
actionProb(1, 0.025f)
),
actionProbs(
actionProb(1, 0.97499996f),
actionProb(0, 0.025f)
actionProb(1, 0.025f),
actionProb(0, 0.97499996f)
)
};
vw.close();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ private void testCBADF(boolean withRank) throws IOException {
actionScore(1, 0)
),
actionScores(
actionScore(0, 0.14991696f),
actionScore(1, 0.14991696f)
actionScore(0, 0.11246802f),
actionScore(1, 0.11246802f)
),
actionScores(
actionScore(0, 0.27180168f),
Expand Down

0 comments on commit c0f7471

Please sign in to comment.