skillfed

tfds-nightly

tensorflow/datasets is a library of datasets ready to use with TensorFlow.

tfds-nightly v4.9.9.dev202510250044 141.7K downloads/30d#11,233 on PyPI4,581
Permissive license Apache 2.0 Active released

What it is and what it does

tfds-nightly is a library that centralizes access to many public machine-learning datasets, downloading and preparing them into standardized tf.data.Dataset objects. It abstracts away the complexity of locating, downloading, and formatting datasets so that standard use cases work immediately—you can load a dataset like MNIST with a single function call and chain it directly into your training pipeline.

The library depends on 18 runtime packages including numpy, pyarrow, protobuf, and tensorflow-metadata to handle data serialization, array operations, and metadata management. It emphasizes simplicity, performance, determinism, and reproducibility: all users get the same examples in the same order, and the library follows best practices for data pipeline efficiency. This is a nightly build, so it tracks development versions of the underlying library.

Use it for:

  • Load standard ML benchmarks without writing download or preprocessing code.
  • Build reproducible training pipelines where dataset order and splits are consistent across runs.
  • Prototype models quickly by chaining load output directly into data transformations.
  • Access a curated catalog of public datasets with standardized metadata and documentation.
  • Integrate dataset loading into workflows with minimal boilerplate.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a library of ready-to-use public datasets formatted as tf.data.Datasets for machine learning workflows, handling download, preparation, and standardized access.

Yes, if you are working with TensorFlow and need standard ML datasets. The library is actively maintained, has low install friction, and carries no known vulnerabilities. However, this is a nightly build (version 4.9.9.dev202510250044)—use the stable release for production unless you specifically need development features. Always verify your right to use each dataset under its own license.

Install

tfds-nightly on PyPI

pip

pip install tfds-nightly

uv

uv add tfds-nightly

poetry

poetry add tfds-nightly

Installing tfds-nightly

Before you install

Low friction installation with a pure-Python wheel. Active maintenance as of 2026-07-29 with 4581 repository stars. This is a nightly build (version 4.9.9.dev202510250044), so expect development-stage stability; use the stable release for production unless you need cutting-edge features.

License in practice

Apache 2.0 permissive license allows commercial and private use with minimal restrictions. You must retain license notices and may not hold the authors liable. Note the package's own disclaimer: you are responsible for verifying your right to use each dataset under its own license.

Quickstart

pip install tfds-nightly
import tfds_nightly
ds = tfds_nightly.load('mnist', split='train', as_supervised=True)
ds = ds.batch(128).prefetch(10)

Requires Python >=3.10. TensorFlow must be installed separately to use the loaded datasets.

Verify before relying

  • Whether this nightly build is suitable for production use or intended only for testing new dataset additions.
  • Performance characteristics compared to the stable release, given the development version status.
  • Complete list of available datasets in the current nightly version.

Package facts

License Apache 2.0 (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 18 — absl-py, array_record, dm-tree, etils, immutabledict, numpy, promise, protobuf, psutil, pyarrow, requests, simple_parsing, tensorflow-metadata, termcolor, toml, tqdm, wrapt, importlib_resources
Maintenance actively maintained — 293 days since the last release
Last repo commit
First released
Downloads 141,749/month — #11,233 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: tfds_nightly-4.9.9.dev202510250044-py3-none-any.whl

Keywords: tensorflow, machine, learning, datasets

Development Status :: 4 - BetaIntended Audience :: DevelopersIntended Audience :: Science/ResearchLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyTopic :: Scientific/Engineering :: Artificial Intelligence

Tags

tensorflow datasets loaderml dataset download and preparemachine learning dataset pipelinepublic datasets for tensorflowdataset fetching and preprocessingreproducible dataset loadingdataset catalog access
dataset-loadingml-benchmarks

More Artificial Intelligence packages