I am looking to use the Amazon cloud for all my simulation needs. The resulting sim files are quite large, and I would like to move them to my local drive for ease of analysis, etc. You have to pay for the data that you are moving, so I want to compress all my sim games as little as possible. These are just numpy arrays saved as .mat files using:
import scipy.io as sio sio.savemat(filepath, do_compression = True)
So my question is: what is the best way to compress numpy arrays (they are currently stored in .mat files, but I can store them using any python method) using python compression compression, linux compression, or both?
I am in a linux environment and I am open to any type of file compression.
tylerthemiler
source share