Skip to content

Commit

Permalink
feat: migrate arima to c++ (#895)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoralez authored Sep 3, 2024
1 parent aff76ff commit 4bd4364
Show file tree
Hide file tree
Showing 8 changed files with 832 additions and 1,194 deletions.
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,
'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

0 comments on commit 4bd4364

Please sign in to comment.