that's what I get for testing without hdf5 on my previous machine....

This commit is contained in:
mrq 2024-08-02 20:44:01 -05:00
parent 7a77978096
commit 4456d3172b

View File

@ -808,7 +808,7 @@ class Dataset(_Dataset):
if key not in cfg.hdf5:
raise RuntimeError(f'Key of Path ({path}) not in HDF5: {key}')
metadata = cfg.hdf5[key].attrs()
metadata = cfg.hdf5[key].attrs
text = cfg.hdf5[key]["text"][:]
resps = cfg.hdf5[key]["audio"][:, :]
@ -915,7 +915,7 @@ class Dataset(_Dataset):
if key not in cfg.hdf5:
raise RuntimeError(f'Key of Path ({path}) not in HDF5: {key}')
metadata = cfg.hdf5[key].attrs()
metadata = cfg.hdf5[key].attrs
text = cfg.hdf5[key]["text"][:]
resps = cfg.hdf5[key]["audio"][:, :]