Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enh: migrate arima to c++ #895

Merged
merged 15 commits into from
Sep 3, 2024
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ nbs/.last_checked
mlruns/
.luarc.json
*.so
*.dll
4 changes: 2 additions & 2 deletions experiments/m3/src/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ def main(test: bool = False):
time = evaluation.query('metric=="time"').T
if test:
expected_results = {
'AutoARIMA': 4.87,
'AutoARIMA': 4.57,
jmoralez marked this conversation as resolved.
Show resolved Hide resolved
'CES': 4.85,
'AutoETS': 4.35,
'DynamicOptimizedTheta': 4.54,
'StatisticalEnsemble': 4.173
'StatisticalEnsemble': 4.23,
}
expected_results = pd.Series(expected_results)
pd.testing.assert_series_equal(
Expand Down
Loading
Loading