- 06 Sep, 2024 1 commit
-
-
fbourgin authored
-
- 26 Dec, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 26 Nov, 2023 1 commit
-
-
Thibault Hallouin authored
resolves #10
-
- 19 Sep, 2023 1 commit
-
-
Thibault Hallouin authored
fixes #5
-
- 05 Sep, 2023 1 commit
-
-
Thibault Hallouin authored
fixes #9
-
- 28 Jun, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 15 Jun, 2023 3 commits
-
-
Thibault Hallouin authored
resolves #8
-
Thibault Hallouin authored
resolves #7
-
Thibault Hallouin authored
related to evalhyd-r#6
-
- 09 Jun, 2023 3 commits
-
-
Thibault Hallouin authored
-
Thibault Hallouin authored
for arrays, rank is not applicable, so it should not be checked
-
Thibault Hallouin authored
-
- 04 May, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 19 Apr, 2023 4 commits
-
-
Thibault Hallouin authored
it had no effect on numerical results
-
Thibault Hallouin authored
`xt::median` and `xt::quantile` are not NaN-proof, and do not have equivalent NaN functions (like `xt::mean` and `xt::nanmean`) so it required a filter to drop the NaN before computing the corresponding condition value
-
Thibault Hallouin authored
-
Thibault Hallouin authored
e.g. "q_prd_median{>quantile0.3,<quantile0.7}" was not working because the string was too long, but the regex were also quite complicated, so this revises the approach and simplifies the regex but to overcome the length limitation with C++ regex, "quantile" now need to be specified as "qtl" to be shorter
-
- 13 Apr, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 12 Apr, 2023 1 commit
-
-
Thibault Hallouin authored
the energy score (ES) is a multi-variate (multi-site) generalisation of the CRPS
-
- 29 Mar, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 24 Mar, 2023 1 commit
-
-
Thibault Hallouin authored
new metric is called CRPS_FROM_ECDF
-
- 23 Mar, 2023 2 commits
-
-
Thibault Hallouin authored
-
Thibault Hallouin authored
new metric is called CRPS_FROM_BS, and existing metric is renamed CRPS_FROM_QS
-
- 20 Mar, 2023 1 commit
-
-
Thibault Hallouin authored
available in xtensor 0.24., see https://github.com/xtensor-stack/xtensor/issues/2651
-
- 24 Feb, 2023 7 commits
-
-
Thibault Hallouin authored
-
Thibault Hallouin authored
-
Thibault Hallouin authored
-
Thibault Hallouin authored
-
Thibault Hallouin authored
-
Thibault Hallouin authored
-
Thibault Hallouin authored
Checking the "nan-ness" of an integer is ill-posed, such that the standard library of some compilers returns an error message. Dropping the nan filter here for the sum is safe because `xt::equal` evaluates to false when either operand is NAN.
-
- 23 Feb, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 22 Feb, 2023 2 commits
-
-
Thibault Hallouin authored
where data completeness corresponds to the actual number of time steps available for each subset/sample, once missing data, mask, and bootstrap have been applied
-
Thibault Hallouin authored
The template argument defining the type of for temporal masks was not used in the elements/intermediates/metrics functions, and since a copy from the user-provided input masks is required to not modify it, it makes more sense to directly initialise it as an xtensor rather than propagate a template argument to use pytensor/rtensor.
-
- 17 Feb, 2023 1 commit
-
-
Thibault Hallouin authored
by extracting the relevant variables from existing BS_CRD
-
- 15 Feb, 2023 2 commits
-
-
Thibault Hallouin authored
-
Thibault Hallouin authored
because `xt::sort` does not behave nicely with series containing NaN values (e.g. it does not consistently put NaN values at the end/ beginning), so need to eliminate them before the sorting, which requires to treat each series separately
-
- 14 Feb, 2023 1 commit
-
-
Thibault Hallouin authored
-
- 13 Feb, 2023 2 commits
-
-
Thibault Hallouin authored
by storing errors before computing quadratic errors
-
Thibault Hallouin authored
-