v4.9.5
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.