best way to preserve numpy arrays on disk
I’ve compared performance (space and time) for a number of ways to store numpy arrays. Few of them support multiple arrays per file, but perhaps it’s useful anyway. Npy and binary files are both really fast and small for dense data. If the data is sparse or very structured, you might want to use npz … Read more