hdf5examples icon indicating copy to clipboard operation
hdf5examples copied to clipboard

HDF5 Example Codes in Python

Results 1 hdf5examples issues
Sort by recently updated
recently updated
newest added

512张 64x64的图片 原始大小0.4mb,转换h5文件后 有25m 多了60倍 使用的示例代码 ```py data_image_set = np.random.rand(len(data_image_path), 64, 64, 3).astype('float32') data_label_set = np.random.rand(len(data_label), 1).astype('float32') list_classes_set= np.random.rand(10, 1).astype('int') for i in range(len(data_image_path) ): data_image_set[i] = np.array(plt.imread(os.path.join(image_dir_path,data_image_path[i]))) data_label_set[i] =...