@@ -17,7 +17,7 @@ def warn(*args, **kwargs):
1717import seaborn as sns # type: ignore
1818import matplotlib .pyplot as plt # type: ignore
1919
20- # This gives an error when running from a python script.
20+ # This gives an error when running from a python script.
2121# Maybe, this should be set in the jupyter notebook directly.
2222#get_ipython().magic('matplotlib inline')
2323sns .set (style = "white" , color_codes = True )
@@ -107,12 +107,6 @@ def Auto_Timeseries(traindata, ts_column, target, sep=',', score_type='rmse',
107107 d_max = 1
108108 q_max = 3
109109 ################################
110- # Check: seasonal_order is not used anywhere in the code, hence commented for now.
111- # if type(seasonal_PDQ) == tuple:
112- # seasonal_order = copy.deepcopy(seasonal_PDQ)
113- # else:
114- # seasonal_order = (3, 1, 3)
115-
116110 ########## This is where we start the loading of the data file ######################
117111 if isinstance (traindata , str ):
118112 if traindata != '' :
@@ -434,7 +428,7 @@ def Auto_Timeseries(traindata, ts_column, target, sep=',', score_type='rmse',
434428#Defining AUTO_TIMESERIES here
435429##########################################################
436430module_type = 'Running' if __name__ == "__main__" else 'Imported'
437- version_number = '0.0.20 '
431+ version_number = '0.0.21 '
438432print ("""Running Auto Timeseries version: %s...Call by using:
439433 auto_ts.Auto_Timeseries(traindata, ts_column,
440434 target, sep, score_type='rmse', forecast_period=5,
0 commit comments