@@ -17,7 +17,7 @@ def warn(*args, **kwargs):
17
17
import seaborn as sns # type: ignore
18
18
import matplotlib .pyplot as plt # type: ignore
19
19
20
- # This gives an error when running from a python script.
20
+ # This gives an error when running from a python script.
21
21
# Maybe, this should be set in the jupyter notebook directly.
22
22
#get_ipython().magic('matplotlib inline')
23
23
sns .set (style = "white" , color_codes = True )
@@ -107,12 +107,6 @@ def Auto_Timeseries(traindata, ts_column, target, sep=',', score_type='rmse',
107
107
d_max = 1
108
108
q_max = 3
109
109
################################
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
-
116
110
########## This is where we start the loading of the data file ######################
117
111
if isinstance (traindata , str ):
118
112
if traindata != '' :
@@ -434,7 +428,7 @@ def Auto_Timeseries(traindata, ts_column, target, sep=',', score_type='rmse',
434
428
#Defining AUTO_TIMESERIES here
435
429
##########################################################
436
430
module_type = 'Running' if __name__ == "__main__" else 'Imported'
437
- version_number = '0.0.20 '
431
+ version_number = '0.0.21 '
438
432
print ("""Running Auto Timeseries version: %s...Call by using:
439
433
auto_ts.Auto_Timeseries(traindata, ts_column,
440
434
target, sep, score_type='rmse', forecast_period=5,
0 commit comments