I'm trying to find right parameters for ARIMA but not able to use parameters higher than 4. Here is the code.
from cuml.tsa.arima import ARIMA
p = 5
q = 0
P = 1
Q = 0
model = ARIMA(train, order=(p,0,q), seasonal_order=(P,0,Q,24), simple_differencing= False)
model.fit()
forecast_df = model.forecast(10)
forecast_df
Error message
ValueError: ERROR: Invalid order. Required: p,q,P,Q <= 4
Is there any way to use parameters higher than 4. I have used higher parameters with statsmodel library but as my data is large I need GPU support provided by this library.