Skip to content

Commit

Permalink
Merge branch 'master' of github.com:0xdata/h2o
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalohlava committed Aug 7, 2014
2 parents 90df690 + b319a7e commit 5fff8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/hex/DeepLearningAutoEncoderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void run() {
final Vec l2_train = l2_frame_train.anyVec();
sb.append("Mean reconstruction error: " + l2_train.mean() + "\n");
Assert.assertEquals(mymodel.mse(), l2_train.mean(), 1e-7);
Assert.assertTrue(l2_train.mean() < 2e-1);
Assert.assertTrue(l2_train.mean() < 3e-1);

// manually compute L2
Frame reconstr = mymodel.score(train); //this creates real values in original space
Expand Down

0 comments on commit 5fff8d9

Please sign in to comment.