tensorflow/datasets
TFDS is a collection of datasets ready to use with TensorFlow, Jax, ...
What it solves
It simplifies the process of accessing and preparing public datasets for machine learning, removing the need to manually download and format data for every new project.
How it works
The library provides a collection of ready-to-use public datasets that are delivered as tf.data.Dataset objects. Users can load specific datasets (like MNIST) with a single command, allowing them to immediately build input pipelines for training or evaluation.
Who it’s for
Machine learning practitioners and researchers who need reliable, standardized, and reproducible access to common public datasets.
Highlights
- Simplicity: Designed to work out-of-the-box for standard use cases.
- Performance: Implements best practices to achieve high-speed data loading.
- Determinism: Ensures all users receive the same examples in the same order for reproducibility.
- Customizability: Offers fine-grained control for advanced users.
- Extensibility: Provides a clear path for users to add their own datasets to the collection.
Related
- Project
- Project
- Project
- Project
- Project