Commit 7d9210b1 authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

add details on calculation of delta score

Showing with 3 additions and 1 deletion
+3 -1
...@@ -303,7 +303,9 @@ namespace evalhyd ...@@ -303,7 +303,9 @@ namespace evalhyd
auto l = xt::sum(t_msk_sampled, -1); auto l = xt::sum(t_msk_sampled, -1);
// compute the Delta score // compute the Delta score
// $\bar{o_j} = \frac{1}{n} \sum_{k \in M_j} r_k$ // \Delta = \sum_{k=1}^{N+1} (r_k - \frac{M}{N+1})^2
// \Delta_o = \frac{MN}{N+1}
// \delta = $\frac{\Delta}{\Delta_o}
xt::view(DS, xt::all(), xt::all(), m, e) = xt::view(DS, xt::all(), xt::all(), m, e) =
xt::nansum( xt::nansum(
xt::square( xt::square(
......
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