I have a list A of a 50,000 elements and each element is an array of shape (102400)
I tried instantiating an array B.
B=numpy.array(A)
But this throws an exception MemoryError.I know that the memory and size is very huge?But is there a way to avoid this MemoryError with ndarrays in numpy ??