Skip to content

Commit 7ccb0fe

Browse files
tests
1 parent 48087e8 commit 7ccb0fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ int main()
4646
// Saving results
4747
save_as_csv_file("output.csv", predictions);
4848
std::cout << "min validation_error " << model.validation_error_steps.minCoeff() << "\n\n";
49-
std::cout << is_approximately_equal(model.validation_error_steps.minCoeff(), 6.32895, 0.00001) << "\n";
49+
std::cout << is_approximately_equal(model.validation_error_steps.minCoeff(), 6.17133, 0.00001) << "\n";
5050

5151
std::cout << "mean prediction " << predictions.mean() << "\n\n";
52-
std::cout << is_approximately_equal(predictions.mean(), 23.587, 0.0001) << "\n";
52+
std::cout << is_approximately_equal(predictions.mean(), 23.591, 0.0001) << "\n";
5353

5454
std::cout << "best_m: " << model.m << "\n";
5555

0 commit comments

Comments
 (0)