'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
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
