tfds.core.Metadata

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

View source

@abc.abstractmethod
load_metadata(
    data_dir
)

Restore the metadata.

save_metadata

View source

@abc.abstractmethod
save_metadata(
    data_dir
)

Save the metadata.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2024-04-26 UTC.