-
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.
make release-tag: Merge branch 'master' into stable
- Loading branch information
Showing
15 changed files
with
159 additions
and
128 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
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
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.3' | ||
__version__ = '0.2.0.dev0' | ||
|
||
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,67 @@ | ||
{ | ||
"name": "statsmodels.tsa.arima.model.ARIMA", | ||
"contributors": [ | ||
"Alexander Geiger <[email protected]>", | ||
"Sarah Alnegheimish <[email protected]>" | ||
], | ||
"description": "ARIMA Model", | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"contributors": [ | ||
"Alexander Geiger <[email protected]>" | ||
], | ||
"description": "ARIMA Model", | ||
"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" | ||
|
@@ -27,6 +27,10 @@ | |
}, | ||
"hyperparameters": { | ||
"fixed": { | ||
"trend": { | ||
"type": "str", | ||
"default": "t" | ||
}, | ||
"steps": { | ||
"type": "int", | ||
"default": 10 | ||
|
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
Oops, something went wrong.