Hi, I am running arima code on databricks commmunity edition. Last time, it worked but now the cluster gets terminated at this command and says its completed. but i cant further plot the predictions since the cluster is terminated.
# Fit the AutoARIMA model
model = auto_arima(train['Price'], seasonal=True, m=365, stepwise=True, suppress_warnings=True, error_action='ignore', trace=False)
What is the issue?