Skip to content

v4.9.5

Compare
Choose a tag to compare
@github-actions github-actions released this 30 May 08:37

Added

  • Support to download and prepare datasets using the
    Parquet data format.

    builder = tfds.builder('fashion_mnist', file_format='parquet')
    builder.download_and_prepare()
    ds = builder.as_dataset(split='train')
    print(next(iter(ds)))
  • tfds.data_source
    is pickable, thus working smoothly with
    PyGrain. Learn more by following the
    tutorial.

  • TFDS plays nicely with
    Croissant. Learn more by
    following the
    recipe.

Changed

Deprecated

Removed

Fixed

Security