dict (optional), keyword arguments to be passed to the
tfds.load function. Refer to tfds.load documentation for a
comperehensive overview of the different loading options.
Returns
dict of dataset_names mapping to a dict of {split_name:
tf.data.Dataset} for each desired datasets.
Loads the named dataset from a dataset collection by calling tfds.load.
Args
dataset
str, the dataset name to load.
split
which split(s) of the dataset to load. If None, will return all
splits available for the dataset.
loader_kwargs
dict (optional), keyword arguments to be passed to the
tfds.load function. Refer to tfds.load documentation for a
comperehensive overview of the different loading options.
Returns
A dict of {str: tf.data.Dataset} for the desided dataset.
Raises
KeyError
if trying to load an dataset not included in the collection.
Loads a number of datasets from the dataset collection.
Args
datasets
list of dataset names to load.
split
which split(s) of the datasets to load.
loader_kwargs
keyword arguments to be passed to the tfds.load function.
Refer to tfds.load documentation for a comperehensive overview of the
different loading options.
Returns
mapping between a dataset name and a mapping of split name to
tf.data.Dataset for each requested dataset.