HDF5Matrix
Keras函数导致OSError: [Errno 24] Too many open files
错误。我有~1200 hdf5
个用于训练神经网络的文件。我系统中最大打开文件数限制为1024.我使用HDF5Matrix
函数的方式是错误的还是函数中的错误。
除了编写自己的hdf5
读者之外,我的情况是否有解决办法?
我的阅读文件的代码:
while True:
file = .... # choose file to open
x1 = HDF5Matrix(file, 'small')
x2 = HDF5Matrix(file, 'vgg224')
y = HDF5Matrix(file, 'ab_hist')
# do something with x1, x2,