HDF5 中的行数
Number of rows into a HDF5
有没有在 ram 中加载 .hdf5 的行数的方法?
我在 Liclipse 上使用 Python 3.4 和 pydev (WIndows 10)
谢谢你
如果您使用 h5py 库,您可以简单地 运行 len(dataset)
或 dataset.len()
(推荐)。
有关详细信息,请参阅 here。
有没有在 ram 中加载 .hdf5 的行数的方法?
我在 Liclipse 上使用 Python 3.4 和 pydev (WIndows 10)
谢谢你
如果您使用 h5py 库,您可以简单地 运行 len(dataset)
或 dataset.len()
(推荐)。
有关详细信息,请参阅 here。