1 year ago
#363111
Sarah S
MemoryError: Unable to allocate 30.6 TiB for an array with shape (2049135, 2049135) and data type float64
I am working with Time Series and during running the ARIMA model it gives me a memory error below
MemoryError: Unable to allocate 30.6 TiB for an array with shape (2049135, 2049135) and data type float64
my parameters
# 1,1,2 ARIMA Model
model = ARIMA(data.Sub_metering_3, order=(1,1,2))
model_fit = model.fit(disp=0)
print(model_fit.summary())
any idea how to solve it?
I have tried to remove paging still didn't work
I am running Windows 10 Anaconda
python
time-series
arima
0 Answers
Your Answer