I manually made 20 models and found out should use d=1
or D=1
for each model, but auto_arima
never use difference args(even one model has no d
or D
at all, and all of the trials are like (1,0,1) x (0, 0, 1, 52). I checked it by setting trace=True
).
I want auto_arima
to do params grid search pdq=(0~3, 0~1, 0~3)
and PDQs=(0~3, 0~1, 0~3, 52)
.
I set params as below:
start_p=0,
start_q=0,
max_p=3,
max_d=1,
max_q=3,
start_P=0,
D=None,
start_Q=0,
max_P=2,
max_D=1,
max_Q=2,
max_order=10,
m=52,
seasonal=True,
stationary=False,
information_criterion='aic',
alpha=0.05,
test='kpss',
seasonal_test='ocsb',
stepwise=True,
n_jobs=-1,
start_params=None,
trend=None,
method=None,
transparams=True,
maxiter=None,
n_fits=100,
with_intercept=True,
How to make auto_arima
do grid search what I wanna do?