Datasets documentation
Command Line Interface (CLI)
You are viewing main version, which requires installation from source. If you'd like
regular pip install, checkout the latest stable version (v3.6.0).
Command Line Interface (CLI)
🤗 Datasets provides a command line interface (CLI) with useful shell commands to interact with your dataset.
You can check the available commands:
>>> datasets-cli --help
usage: datasets-cli <command> [<args>]
positional arguments:
{env,test,delete_from_hub}
datasets-cli command helpers
env Print relevant system environment info.
test Test dataset loading.
delete_from_hub Delete dataset config from the Hub
optional arguments:
-h, --help show this help message and exit
Delete from Hub
Delete a dataset configuration from a supported dataset on the Hub.
>>> datasets-cli delete_from_hub --help
usage: datasets-cli <command> [<args>] delete_from_hub [-h] [--token TOKEN] [--revision REVISION] dataset_id config_name
positional arguments:
dataset_id source dataset ID, e.g. USERNAME/DATASET_NAME or ORGANIZATION/DATASET_NAME
config_name config name to delete
optional arguments:
-h, --help show this help message and exit
--token TOKEN access token to the Hugging Face Hub
--revision REVISION source revision
For example:
>>> datasets-cli delete_from_hub USERNAME/DATASET_NAME CONFIG_NAME
Do not forget that you need to log in first to your Hugging Face account:
>>> huggingface-cli login