I use a web service to train some of my deep learning models through a Jupyter Notebook on AWS. For cost reasons I would like to store my data as .npz
files on my own server and load them straight to memory of my remote machine.
The np.load()
function doesn't work with http
links and using urlretrieve
I wasn't able to make it work. I only got it working downloading the data with wget
and then loading the file from a local path. However, this doesn't fully solve my problem.
Any recommendations?