list_datasets
Explore and filter available datasets in the OpenXAI framework by category, such as synthetic, real-world, tabular, image, or text, for evaluating and benchmarking AI explanation methods.
Instructions
List available datasets in OpenXAI framework
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Filter by dataset category (synthetic, real-world, tabular, image, text) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Filter by dataset category (synthetic, real-world, tabular, image, text)",
"enum": [
"synthetic",
"real-world",
"tabular",
"image",
"text",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}