MIT-AI-Accelerator / neurips-2020-sevir

Code and model benchmarks for "SEVIR : A Storm Event Imagery Dataset for Deep Learning Applications in Radar and Satellite Meteorology"
MIT License
79 stars 21 forks source link

link to nowcast_testing.h5 is broken #1

Open andrekos opened 2 years ago

andrekos commented 2 years ago

The link https://www.dropbox.com/s/27pqogywg75as5f in AnalyzeNowcast.ipynb seems to be broken... please fix or re-upload the nowcasting sample test dataset: nowcast_testing.h5 if possible. Thank you.

markveillette commented 2 years ago

Thanks for letting us know. While we look into fixing this, you can find similarly structed test data here on AWS: s3://sevir/data/processed/nowcast_testing_000.h5.tar.gz

analyticsneu commented 2 years ago

The file format is different @markveillette.. The provided readers won't work.. Can you reup the original dataset?

 24     s = np.s_[rank:end:size]
 25     with h5py.File(filename, mode='r') as hf:

---> 26 IN = hf['IN'][s] 27 OUT = hf['OUT'][s] 28 IN = (IN.astype(dtype)-MEAN)/SCALE