I have a large numpy array that I am going to take a linear projection of using randomly generated values.
>>> input_array.shape
(50, 200000)
>>> random_array = np.random.normal(size=(200000, 300))
>>> output_array = np.dot(input_array, random_array)
Unfortunately, random_array takes up a lot of memory, and my machine starts swapping. It seems to me that I don't actually need all of random_array around at once; in theory, I ought to be able to generate it lazily during the dot product calculation...but I can't figure out how.
How can I reduce the memory footprint of the calculation of output_array from input_array?
random_arrayis generated may be relevant. – David Zaslavsky Jan 4 at 0:31random_arrayis a bonus, but not required. – Josh Bleecher Snyder Jan 4 at 0:34np.dotneeds to know the sizes of all its inputs (as 2D dot product == matrix multiplication). I can't see an (easy) way of using a generator innp.dotin any case. – Yuushi Jan 4 at 1:22Rij = random_based_on_seeds(global_rand_seed, i, j). – Josh Bleecher Snyder Jan 4 at 19:04