list_explainers
Discover and filter available AI explanation methods like LIME, SHAP, and Grad-CAM using OpenXAI's standardized interface for evaluating and benchmarking models.
Instructions
List available explanation methods in OpenXAI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method_type | No | Filter by explanation method type |
Input Schema (JSON Schema)
{
"properties": {
"method_type": {
"description": "Filter by explanation method type",
"enum": [
"lime",
"shap",
"integrated_gradients",
"gradcam",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}