load_dataset
Load a dataset for evaluating AI explanation methods from the OpenXAI MCP Server by specifying the dataset name and optional download preference.
Instructions
Load a specific dataset from OpenXAI
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| dataset_name | Yes | Name of the dataset to load (e.g., german, compas, adult) | |
| download | No | Whether to download the dataset if not available locally | 
Input Schema (JSON Schema)
{
  "properties": {
    "dataset_name": {
      "description": "Name of the dataset to load (e.g., german, compas, adult)",
      "type": "string"
    },
    "download": {
      "default": true,
      "description": "Whether to download the dataset if not available locally",
      "type": "boolean"
    }
  },
  "required": [
    "dataset_name"
  ],
  "type": "object"
}