Commit 5adc574d authored by fbourgin's avatar fbourgin
Browse files

wip

parent d7abf7fe
1 merge request!9Resolve "evaluation of quantiles prediction"
Pipeline #63285 passed with stage
in 3 minutes and 45 seconds
Showing with 10 additions and 0 deletions
+10 -0
......@@ -246,6 +246,7 @@ TEST(ProbabilistTests, TestRanks)
xt::xtensor<double, 2>({}),
"high", // events
{}, // c_lvl
{}, // q_lvl
xt::xtensor<bool, 4>({}), // t_msk
xt::xtensor<std::array<char, 32>, 2>({}), // m_cdt
xtl::missing<const std::unordered_map<std::string, int>>(), // bootstrap
......@@ -361,6 +362,7 @@ TEST(ProbabilistTests, TestMasks)
thresholds,
"high",
confidence_levels,
{}, // q_lvl
// shape: (sites [1], lead times [1], subsets [1], time [t])
masks
);
......@@ -431,6 +433,7 @@ TEST(ProbabilistTests, TestMaskingConditions)
thresholds,
"high",
confidence_levels,
{}, // q_lvl
masks,
q_conditions
);
......@@ -488,6 +491,7 @@ TEST(ProbabilistTests, TestMaskingConditions)
thresholds,
"high",
confidence_levels,
{}, // q_lvl
masks,
q_conditions_
);
......@@ -542,6 +546,7 @@ TEST(ProbabilistTests, TestMaskingConditions)
thresholds,
"high",
confidence_levels,
{}, // q_lvl
masks,
t_conditions
);
......@@ -705,6 +710,7 @@ TEST(ProbabilistTests, TestBootstrap)
thresholds,
"high", // events
confidence_levels,
{}, // q_lvl
xt::xtensor<bool, 4>({}), // t_msk
xt::xtensor<std::array<char, 32>, 2>({}), // m_cdt
bootstrap,
......@@ -790,6 +796,7 @@ TEST(ProbabilistTests, TestBootstrapSummary)
thresholds,
"high", // events
confidence_levels,
{}, // q_lvl
xt::xtensor<bool, 4>({}), // t_msk
xt::xtensor<std::array<char, 32>, 2>({}), // m_cdt
bootstrap_0,
......@@ -808,6 +815,7 @@ TEST(ProbabilistTests, TestBootstrapSummary)
thresholds,
"high", // events
confidence_levels,
{}, // q_lvl
xt::xtensor<bool, 4>({}), // t_msk
xt::xtensor<std::array<char, 32>, 2>({}), // m_cdt
bootstrap_1,
......@@ -859,6 +867,7 @@ TEST(ProbabilistTests, TestBootstrapSummary)
thresholds,
"high", // events
confidence_levels,
{}, // q_lvl
xt::xtensor<bool, 4>({}), // t_msk
xt::xtensor<std::array<char, 32>, 2>({}), // m_cdt
bootstrap_2,
......@@ -935,6 +944,7 @@ TEST(ProbabilistTests, TestCompleteness)
xt::xtensor<double, 2>({}), // thresholds
xtl::missing<const std::string>(), // events
{},
{}, // q_lvl
msk, // t_msk
xt::xtensor<std::array<char, 32>, 2>({}), // m_cdt
xtl::missing<const std::unordered_map<std::string, int>>(), // bootstrap
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment