Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →LIME-based local explanation skill for individual predictions across tabular, text, and image data.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -38% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 17% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 59% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 207% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 57% | 0% |
LIME-based local explanation skill for individual predictions across tabular, text, and image data using Local Interpretable Model-agnostic Explanations.
json{ "type": "object", "required": ["modelPath", "dataType", "instancePath"], "properties": { "modelPath": { "type": "string", "description": "Path to the trained model or prediction function" }, "dataType": { "type": "string", "enum": ["tabular", "text", "image"], "description": "Type of data to explain" }, "instancePath": { "type": "string", "description": "Path to instance(s) to explain" }, "tabularConfig": { "type": "object", "properties": { "trainingDataPath": { "type": "string" }, "featureNames": { "type": "array", "items": { "type": "string" } }, "categoricalFeatures": { "type": "array", "items": { "type": "integer" } }, "classNames": { "type": "array", "items": { "type": "string" } } } }, "textConfig": { "type": "object", "properties": { "classNames": { "type": "array", "items": { "type": "string" } }, "splitExpression": { "type": "string" } } }, "imageConfig": { "type": "object", "properties": { "segmenter": { "type": "string", "enum": ["quickshift", "slic", "felzenszwalb"] }, "hideColor": { "type": "string" }, "numSamples": { "type": "integer" } } }, "explainerConfig": { "type": "object", "properties": { "numFeatures": { "type": "integer" }, "numSamples": { "type": "integer" }, "kernelWidth": { "type": "number" } } } } }
json{ "type": "object", "required": ["status", "explanations"], "properties": { "status": { "type": "string", "enum": ["success", "error"] }, "explanations": { "type": "array", "items": { "type": "object", "properties": { "instanceId": { "type": "string" }, "predictedClass": { "type": "string" }, "predictionProbability": { "type": "number" }, "features": { "type": "array", "items": { "type": "object", "properties": { "feature": { "type": "string" }, "weight": { "type": "number" }, "contribution": { "type": "string" } } } }, "localAccuracy": { "type": "number" } } } }, "visualizations": { "type": "array", "items": { "type": "object", "properties": { "instanceId": { "type": "string" }, "plotPath": { "type": "string" } } } } } }
javascript{ kind: 'skill', title: 'Generate LIME explanations for predictions', skill: { name: 'lime-explainer', context: { modelPath: 'models/classifier.pkl', dataType: 'tabular', instancePath: 'data/instances_to_explain.csv', tabularConfig: { trainingDataPath: 'data/train.csv', featureNames: ['age', 'income', 'credit_score'], categoricalFeatures: [0, 2], classNames: ['reject', 'approve'] }, explainerConfig: { numFeatures: 10, numSamples: 5000 } } } }
Other measured skills in the registry, with their headline benchmark lift.