Skip to content

Commit 487d407

Browse files
committed
add ALL_METRICS
1 parent fe6f13a commit 487d407

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/auto_cast/metrics/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
from .spatiotemporal import MSE, MAE, NMAE, NMSE, RMSE, NRMSE, VMSE, VRMSE, LInfinity
1+
from .spatiotemporal import MAE, MSE, NMAE, NMSE, NRMSE, RMSE, VMSE, VRMSE, LInfinity
22

3-
__all__ = ["MSE", "MAE", "NMAE", "NMSE", "RMSE", "NRMSE", "VMSE", "VRMSE", "LInfinity"]
3+
__all__ = ["MAE", "MSE", "NMAE", "NMSE", "NRMSE", "RMSE", "VMSE", "VRMSE", "LInfinity"]
4+
5+
ALL_METRICS = (
6+
MSE, MAE, NMAE, NMSE, RMSE, NRMSE, VMSE, VRMSE, LInfinity
7+
)

0 commit comments

Comments
 (0)