hf_get_dataset_info
Retrieve comprehensive details about a dataset, including metadata, files, and configurations from the Hugging Face Hub. Specify the dataset repository ID and optional revision for targeted information.
Instructions
Get detailed information for a specific dataset including metadata, files, configuration, and more.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full | No | Whether to fetch most dataset data including all tags and files | |
repo_id | Yes | Dataset repository ID (e.g., 'squad', 'imdb') | |
revision | No | Optional git revision (branch, tag, or commit hash) |
Input Schema (JSON Schema)
{
"properties": {
"full": {
"description": "Whether to fetch most dataset data including all tags and files",
"type": "boolean"
},
"repo_id": {
"description": "Dataset repository ID (e.g., 'squad', 'imdb')",
"type": "string"
},
"revision": {
"description": "Optional git revision (branch, tag, or commit hash)",
"type": "string"
}
},
"required": [
"repo_id"
],
"type": "object"
}