-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the possibility to use cross validation when training PyAF models #…
…105 Added two tests for cross validation.
- Loading branch information
Antoine Carme
committed
Sep 26, 2018
1 parent
22c30b9
commit 47e90e5
Showing
2 changed files
with
100 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import pandas as pd | ||
import numpy as np | ||
|
||
import pyaf.ForecastEngine as autof | ||
import pyaf.Bench.TS_datasets as tsds | ||
|
||
b1 = tsds.load_airline_passengers() | ||
df = b1.mPastData | ||
|
||
df.head() | ||
|
||
|
||
lEngine = autof.cForecastEngine() | ||
lEngine | ||
|
||
H = b1.mHorizon; | ||
# lEngine.mOptions.enable_slow_mode(); | ||
lEngine.mOptions.mCrossValidationOptions.mMethod = "TSCV"; | ||
|
||
lEngine.mOptions.mParallelMode = True; | ||
lEngine.train(df , b1.mTimeVar , b1.mSignalVar, H); | ||
lEngine.getModelInfo(); | ||
print(lEngine.mSignalDecomposition.mTrPerfDetails.head()); | ||
|
||
lEngine.mSignalDecomposition.mBestModel.mTimeInfo.mResolution | ||
|
||
lEngine.standardPlots(name = "outputs/my_airline_passengers_cross_valid") | ||
|
||
dfapp_in = df.copy(); | ||
dfapp_in.tail() | ||
|
||
#H = 12 | ||
dfapp_out = lEngine.forecast(dfapp_in, H); | ||
dfapp_out.tail(2 * H) | ||
print("Forecast Columns " , dfapp_out.columns); | ||
lForecastColumnName = b1.mSignalVar + '_Forecast' | ||
Forecast_DF = dfapp_out[[b1.mTimeVar , b1.mSignalVar, lForecastColumnName , lForecastColumnName + '_Lower_Bound', lForecastColumnName + '_Upper_Bound' ]] | ||
print(Forecast_DF.info()) | ||
print("Forecasts\n" , Forecast_DF.tail(2*H)); | ||
|
||
print("\n\n<ModelInfo>") | ||
print(lEngine.to_json()); | ||
print("</ModelInfo>\n\n") | ||
print("\n\n<Forecast>") | ||
print(Forecast_DF.tail(2*H).to_json(date_format='iso')) | ||
print("</Forecast>\n\n") | ||
|
||
# lEngine.standardPlots(name = "outputs/airline_passengers") |
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,52 @@ | ||
from __future__ import absolute_import | ||
|
||
import pandas as pd | ||
import numpy as np | ||
|
||
|
||
import pyaf.ForecastEngine as autof | ||
import pyaf.Bench.TS_datasets as tsds | ||
|
||
|
||
b1 = tsds.load_ozone() | ||
df = b1.mPastData | ||
|
||
#df.tail(10) | ||
#df[:-10].tail() | ||
#df[:-10:-1] | ||
#df.describe() | ||
|
||
|
||
lEngine = autof.cForecastEngine() | ||
lEngine | ||
|
||
H = b1.mHorizon; | ||
# lEngine.mOptions.enable_slow_mode(); | ||
lEngine.mOptions.mCrossValidationOptions.mMethod = "TSCV"; | ||
lEngine.train(df , b1.mTimeVar , b1.mSignalVar, H); | ||
lEngine.getModelInfo(); | ||
print(lEngine.mSignalDecomposition.mTrPerfDetails.head()); | ||
|
||
lEngine.mSignalDecomposition.mBestModel.mTimeInfo.mResolution | ||
|
||
lEngine.standardPlots("outputs/my_ozone_cross_valid"); | ||
|
||
dfapp_in = df.copy(); | ||
dfapp_in.tail() | ||
|
||
#H = 12 | ||
dfapp_out = lEngine.forecast(dfapp_in, H); | ||
#dfapp_out.to_csv("outputs/ozone_apply_out.csv") | ||
dfapp_out.tail(2 * H) | ||
print("Forecast Columns " , dfapp_out.columns); | ||
Forecast_DF = dfapp_out[[b1.mTimeVar , b1.mSignalVar, b1.mSignalVar + '_Forecast']] | ||
print(Forecast_DF.info()) | ||
print("Forecasts\n" , Forecast_DF.tail(H)); | ||
|
||
print("\n\n<ModelInfo>") | ||
print(lEngine.to_json()); | ||
print("</ModelInfo>\n\n") | ||
print("\n\n<Forecast>") | ||
print(Forecast_DF.tail(2*H).to_json(date_format='iso')) | ||
print("</Forecast>\n\n") | ||
|