Debugging a program working with h5py. The hdf5 should look something like this:
test.hdf5
-labels <- DataSet
-train <- Group
I do:
>>> import h5py
>>> test = h5py.File('test.hdf5')
>>> test['labels']
<HDF5 dataset "labels": shape (1, 2), type "|O">
What is type |O
? I can't find it on the list of types or the special types.
It's a reference.
implementing the example in that section: