DataToolkit.jl
DataToolkit.jl copied to clipboard
Add HDF5 loader
Some complications that this loader might introduce:
- a single
.h5
file frequently corresponds to severalDataset
s, and it would be nice if the specification inData.toml
could refer directly to a singleDataSet
, but preserve the hierarchal relationship between multipleDataSet
s.- More generally, I frequently work with a directory full of
.h5
files, and it would be nice to preserve the relationship between all of these files as well.
- More generally, I frequently work with a directory full of
- In HDF5, a dataset can have attributes, and it is important that these be accessible from DataToolkit
- The
HDF5.jl
package is relatively heavyweight, and so it would be good to not take on an explicit dependency of this package.