validate
Verify the existence and accessibility of a Hugging Face dataset by providing its identifier and optional auth token for private datasets.
Instructions
Check if a Hugging Face dataset exists and is accessible
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auth_token | No | Hugging Face auth token for private/gated datasets | |
dataset | Yes | Hugging Face dataset identifier in the format owner/dataset |
Input Schema (JSON Schema)
{
"properties": {
"auth_token": {
"description": "Hugging Face auth token for private/gated datasets",
"optional": true,
"type": "string"
},
"dataset": {
"description": "Hugging Face dataset identifier in the format owner/dataset",
"examples": [
"ylecun/mnist",
"stanfordnlp/imdb"
],
"pattern": "^[^/]+/[^/]+$",
"type": "string"
}
},
"required": [
"dataset"
],
"type": "object"
}