Hi guys!
While trying to load the data using this lines of code
!wget -q https://share.phys.ethz.ch/~pf/albecker/abc/09072022_1154_train.h5
!wget -q https://share.phys.ethz.ch/~pf/albecker/abc/09072022_1154_val.h5
!wget -q https://share.phys.ethz.ch/~pf/albecker/abc/09072022_1154_test.h5
trainset = h5py.File("09072022_1154_train.h5", "r")
validateset = h5py.File("09072022_1154_val.h5", "r")
testset = h5py.File("09072022_1154_test.h5", "r")
I got this error:
FileNotFoundError: [Errno 2] Unable to open file (unable to open file: name = '09072022_1154_train.h5', errno = 2, error message = 'No such file or directory', flags = 0, o_flags = 0)Any solution?
Thanks.
@TAUIL_Abdelilah I suspect the links in the wget are not available for download during the very early morning. I suggest downloading them when they are and saving the h5 files to work when you want. I can't share a public link of my saved files because goes against competition rules.
Thanks @Daniel