View source on GitHub
|
Abstract base class for DatasetInfo metadata container.
builder.info.metadata allows the dataset to expose additional general
information about the dataset which are not specific to a feature or
individual example.
To implement the interface, overwrite save_metadata and
load_metadata.
See tfds.core.MetadataDict for a simple implementation that acts as a
dict that saves data to/from a JSON file.
Methods
load_metadata
@abc.abstractmethodload_metadata( data_dir )
Restore the metadata.
save_metadata
@abc.abstractmethodsave_metadata( data_dir )
Save the metadata.
View source on GitHub