-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deprecation warning for old ARIMA primitive (#10)
* Bump version: 0.1.4.dev0 → 0.1.4.dev1 * deprecate arima JSON * add warning
- Loading branch information
Showing
6 changed files
with
84 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__author__ = 'MIT Data To AI Lab' | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.4.dev0' | ||
__version__ = '0.1.4.dev1' | ||
|
||
import os | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"name": "statsmodels.tsa.arima_model.Arima", | ||
"contributors": [ | ||
"Alexander Geiger <[email protected]>" | ||
], | ||
"description": "ARIMA Model; mstatsmodels.tsa.arima_model.Arima is deprecated and will be removed in a future version. Please use statsmodels.tsa.arima.model.ARIMA instead.", | ||
"classifiers": { | ||
"type": "estimator", | ||
"subtype": "regressor" | ||
}, | ||
"modalities": [], | ||
"primitive": "mlstars.adapters.statsmodels.ARIMA", | ||
"produce": { | ||
"method": "predict", | ||
"args": [ | ||
{ | ||
"name": "X", | ||
"type": "ndarray" | ||
} | ||
], | ||
"output": [ | ||
{ | ||
"name": "y", | ||
"type": "ndarray" | ||
} | ||
] | ||
}, | ||
"hyperparameters": { | ||
"fixed": { | ||
"trend": { | ||
"type": "str", | ||
"default": "t" | ||
}, | ||
"steps": { | ||
"type": "int", | ||
"default": 10 | ||
} | ||
}, | ||
"tunable": { | ||
"p": { | ||
"type": "int", | ||
"default": 1, | ||
"range": [ | ||
0, | ||
40 | ||
] | ||
}, | ||
"d": { | ||
"type": "int", | ||
"default": 0, | ||
"range": [ | ||
0, | ||
3 | ||
] | ||
}, | ||
"q": { | ||
"type": "int", | ||
"default": 0, | ||
"range": [ | ||
0, | ||
12 | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters