Add a TFDS user CLI
See original GitHub issueIt would be nice to have a user CLI which is installed at the same time as TFDS to pre-generate dataset:
tfds new my_dataset # Generate the base template & cie
cd my_dataset/
tfds build # Generate my_dataset
tfds new
would create the following folder structure:
my_dataset/
fake_data/
__init__.py
dataset.py
dataset_test.py
make_fake_data.py
checksum.txt
Some technical details:
- Script would be implemented in python using argparse
- Is added through the
entry_points={'command'}
section insetup.py
This first require to implement the one folder==one dataset model.
Issue Analytics
- State:
- Created 3 years ago
- Comments:12 (12 by maintainers)
Top Results From Across the Web
TFDS CLI - Datasets - TensorFlow
TFDS CLI is a command-line tool that provides various commands to easily work with ... If you would like to use Nvidia GPU...
Read more >Add TFVC command - Azure Repos | Microsoft Learn
See how to use the Add command in Visual Studio to add files to a TFVC repository.
Read more >TensorFlow Tutorial 12 - TensorFlow Datasets - YouTube
In this video we look at the datasets that are available to us through TensorFlow Datasets ( tfds ) and how we load...
Read more >TFDS Guide - Kaggle
Dataset pipelines. When prepared with TFDS, it is easy to use the dataset with TensorFlow models on Cloud TPUs. Preparing a Dataset for...
Read more >How to load custom data into tfds for keras cyclegan example?
Install the TFDS CLI: pip install -q tfds-nightly · Navigate into the directory of your dataset: cd path/to/my/project/datasets/ · Create a new ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Thanks for letting me know, Let me know if you need any help:)
For future work, see https://github.com/tensorflow/datasets/issues/2447