Skip to content

Fix MatrixFactorization trainer's warning #5071

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix linux test
  • Loading branch information
LittleLittleCloud committed May 4, 2020
commit b3a580c836fa6447f9f594a9fa93a90bc898d7e8
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void MatrixFactorizationSimpleTrainAndPredict()
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
// Linux case
var expectedUnixL2Error = 0.612974867782832; // Linux baseline
var expectedUnixL2Error = 0.610332110253861; // Linux baseline
Assert.InRange(metrices.MeanSquaredError, expectedUnixL2Error - linuxTolerance, expectedUnixL2Error + linuxTolerance);
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
Expand Down