TFDS CLI is a command-line tool that provides various commands to easily work with TensorFlow Datasets.
Copyright 2020 The TensorFlow Datasets Authors, Licensed under the Apache License, Version 2.0
The CLI tool is installed with tensorflow-datasets
(or tfds-nightly
).
%%bash
pip install -q tfds-nightly
tfds --version
For the list of all CLI commands:
!tfds --help
tfds new
: Writing a custom Dataset¶This command will help you kickstart writing your new Python dataset by creating
a <dataset_name>/
directory containing default implementation files.
Usage:
!tfds new my_dataset
Will create:
ls -1 my_dataset/
See our writing dataset guide for more info.
Available options:
!tfds new --help