Skip to content

Commit

Permalink
Merge pull request #1293 from metno/fix-tolerance-1e-3
Browse files Browse the repository at this point in the history
MQI Check: adjust tolerance again to 1e-3
  • Loading branch information
lewisblake authored Jul 31, 2024
2 parents 0dd1f8e + c506a06 commit 1a3c12e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaerocom/aeroval/fairmode_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def fairmode_stats(obs_var: str, stats: dict) -> dict:
assert np.isclose(
rmsu * beta_mqi,
np.sqrt((bias) ** 2 + (mod_std - obs_std) ** 2 + (2 * obs_std * mod_std * (1 - R))),
rtol=1e-4,
rtol=1e-3,
), "failed MQI check"

fairmode = dict(
Expand Down

0 comments on commit 1a3c12e

Please sign in to comment.