dEchorate
dEchorate copied to clipboard
HDF5 issue?
Hi there, Tried to download and open the RIR dataset with the HDF5 format. I used your notebook:
path_to_rirs_hdf = path_to_data / Path('dEchorate_rirs_gzip7.hdf5')
rir_dset = h5py.File(path_to_rirs_hdf, mode='r')
signals = list(rir_dset.keys())
print('Signals in this dataset:', signals)
rooms = list(rir_dset[signals[0]].keys())
print('Rooms in this dataset:', rooms)
and got the following hdf5 error:
...
h5py/h5g.pyx in h5py.h5g.GroupID.get_num_objs()
RuntimeError: Unable to get group info (addr overflow, addr = 2536, size = 328, eoa = 2048)
I tried to update h5py but got the same issue, which I believe more or less means your file is corrupted or something?
Thanks in advance, would love to use this dataset.