Problem with kernel trying forecast with fbprophet
When I try to fit the dataset in the jupyter notebook I'm getting kernel died and restart. I'm running in local.
train_dataset = df_raw[(df_raw['item'] == 1) & df_raw['store'] == 1]
train_dataset.reset_index(level=0, inplace=True)
train_dataset = train_dataset[['date', 'sales']]
train_dataset.columns = ["ds", "y"]
train_dataset = train_dataset.sample(1000)
prophet_basic = Prophet()
prophet_basic.fit(train_dataset)
All the other steps works fine.
from Recent Questions - Stack Overflow https://ift.tt/2S5jMf2
https://ift.tt/eA8V8J
Comments
Post a Comment