HDF5Matrix
Defined in tensorflow/python/keras/_impl/keras/utils/io_utils.py
.
Representation of HDF5 dataset to be used instead of a Numpy array.
Example:
x_data = HDF5Matrix('input/file.hdf5', 'data') model.predict(x_data)
Providing start
and end
allows use of a slice of the dataset.
Optionally, a normalizer function (or lambda) can be given. This will be called on every slice of data retrieved.
datapath
: string, path to a HDF5 filedataset
: string, name of the HDF5 dataset in the file specified in datapathstart
: int, start of desired slice of the specified datasetend
: int, end of desired slice of the specified datasetnormalizer
: function to be called on data when retrievedAn array-like HDF5 dataset.
dtype
Gets the datatype of the dataset.
A numpy dtype string.
ndim
Gets the number of dimensions (rank) of the dataset.
An integer denoting the number of dimensions (rank) of the dataset.
shape
Gets a numpy-style shape tuple giving the dataset dimensions.
A numpy-style shape tuple.
size
Gets the total dataset size (number of elements).
An integer denoting the number of elements in the dataset.
__init__
__init__( datapath, dataset, start=0, end=None, normalizer=None )
Initialize self. See help(type(self)) for accurate signature.
__getitem__
__getitem__(key)
__len__
__len__()
refs
© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/utils/HDF5Matrix