aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/linear_regression/linear_regression_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /library/cpp/linear_regression/linear_regression_ut.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
downloadydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/linear_regression/linear_regression_ut.cpp')
-rw-r--r--library/cpp/linear_regression/linear_regression_ut.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/library/cpp/linear_regression/linear_regression_ut.cpp b/library/cpp/linear_regression/linear_regression_ut.cpp
index e71a16b67a..991a95c0d0 100644
--- a/library/cpp/linear_regression/linear_regression_ut.cpp
+++ b/library/cpp/linear_regression/linear_regression_ut.cpp
@@ -13,8 +13,8 @@ namespace {
}
}
-Y_UNIT_TEST_SUITE(TLinearRegressionTest) {
- Y_UNIT_TEST(MeanAndDeviationTest) {
+Y_UNIT_TEST_SUITE(TLinearRegressionTest) {
+ Y_UNIT_TEST(MeanAndDeviationTest) {
TVector<double> arguments;
TVector<double> weights;
@@ -77,7 +77,7 @@ Y_UNIT_TEST_SUITE(TLinearRegressionTest) {
ValueIsCorrect(deviationCalculator.GetDeviation(), checkRemovingDeviationCalculator.GetDeviation(), 1e-5);
}
- Y_UNIT_TEST(CovariationTest) {
+ Y_UNIT_TEST(CovariationTest) {
TVector<double> firstValues;
TVector<double> secondValues;
TVector<double> weights;
@@ -176,15 +176,15 @@ Y_UNIT_TEST_SUITE(TLinearRegressionTest) {
}
}
- Y_UNIT_TEST(FastSLRTest) {
+ Y_UNIT_TEST(FastSLRTest) {
SLRTest<TFastSLRSolver>();
}
- Y_UNIT_TEST(KahanSLRTest) {
+ Y_UNIT_TEST(KahanSLRTest) {
SLRTest<TKahanSLRSolver>();
}
- Y_UNIT_TEST(SLRTest) {
+ Y_UNIT_TEST(SLRTest) {
SLRTest<TSLRSolver>();
}
@@ -231,11 +231,11 @@ Y_UNIT_TEST_SUITE(TLinearRegressionTest) {
UNIT_ASSERT_DOUBLES_EQUAL(lrSolver.SumSquaredErrors(), expectedSumSquaredErrors, expectedSumSquaredErrors * 0.01);
}
- Y_UNIT_TEST(FastLRTest) {
+ Y_UNIT_TEST(FastLRTest) {
LinearRegressionTest<TFastLinearRegressionSolver>();
}
- Y_UNIT_TEST(LRTest) {
+ Y_UNIT_TEST(LRTest) {
LinearRegressionTest<TLinearRegressionSolver>();
}
@@ -275,31 +275,31 @@ Y_UNIT_TEST_SUITE(TLinearRegressionTest) {
UNIT_ASSERT_DOUBLES_EQUAL(rmse, 0., 1e-3);
}
- Y_UNIT_TEST(SigmaTest100) {
+ Y_UNIT_TEST(SigmaTest100) {
TransformationTest(ETransformationType::TT_SIGMA, 100);
}
- Y_UNIT_TEST(SigmaTest1000) {
+ Y_UNIT_TEST(SigmaTest1000) {
TransformationTest(ETransformationType::TT_SIGMA, 1000);
}
- Y_UNIT_TEST(SigmaTest10000) {
+ Y_UNIT_TEST(SigmaTest10000) {
TransformationTest(ETransformationType::TT_SIGMA, 10000);
}
- Y_UNIT_TEST(SigmaTest100000) {
+ Y_UNIT_TEST(SigmaTest100000) {
TransformationTest(ETransformationType::TT_SIGMA, 100000);
}
- Y_UNIT_TEST(SigmaTest1000000) {
+ Y_UNIT_TEST(SigmaTest1000000) {
TransformationTest(ETransformationType::TT_SIGMA, 1000000);
}
- Y_UNIT_TEST(SigmaTest10000000) {
+ Y_UNIT_TEST(SigmaTest10000000) {
TransformationTest(ETransformationType::TT_SIGMA, 10000000);
}
- Y_UNIT_TEST(ResetCalculatorTest) {
+ Y_UNIT_TEST(ResetCalculatorTest) {
TVector<double> arguments;
TVector<double> weights;
const double eps = 1e-10;