Hi guys,
I am trying to compute a huge correlation matrix in an out of core or in memory compressed manner (as my data is normalize I only need the dot product). In the example given on the main page here on github, the "result" variable is a normal python variable stored in main memory, which blows everything up on my machine as the result is ~20GB.
My question is, how can I have the corresponding result immediately going to an compressed container (either memory or out of core, where memory would be preferred given that I could get a factor ~5 compression).
Many thanks in advance.
Hi guys,
I am trying to compute a huge correlation matrix in an out of core or in memory compressed manner (as my data is normalize I only need the dot product). In the example given on the main page here on github, the "result" variable is a normal python variable stored in main memory, which blows everything up on my machine as the result is ~20GB.
My question is, how can I have the corresponding result immediately going to an compressed container (either memory or out of core, where memory would be preferred given that I could get a factor ~5 compression).
Many thanks in advance.