rainnet icon indicating copy to clipboard operation
rainnet copied to clipboard

Could you please tell me how to decompress the RYDL.hdf5 file to get the picture and put it into the model for prediction?

Open DBIGSHUAI opened this issue 3 years ago • 1 comments

DBIGSHUAI avatar Sep 23 '22 04:09 DBIGSHUAI

Hi @DBIGSHUAI, you could access hdf5 data as follows:

import h5py
data = h5py.File("RYDL.hdf5", mode="r")

After that, you could use the verification example provided in the rainymotion library as a reference: https://rainymotion.readthedocs.io/en/latest/notebooks/nowcasting.html.

hydrogo avatar Sep 30 '22 05:09 hydrogo