What problem does it solve? Machine learning models often act as black boxes, making it hard to understand why they produce specific predictions. This Skill computes SHAP (SHapley Additive exPlanations) values to quantify each feature's contribution, enabling model debugging, bias detection, and explainable AI workflows. ## Core Features & Use Cases - Explainer Selection: Automatically choose the right explainer (TreeExplainer, DeepExplainer, KernelExplainer, LinearExplainer) for tree-based models, deep learning networks, linear models, or black-box functions. - Visualization Suite: Generate waterfall, beeswarm, bar, scatter, force, heatmap, violin, and decision plots for both individual predictions and global feature importance. - Structured Workflows: Follow guided workflows for model debugging, feature engineering, model comparison, fairness and bias analysis, and production deployment. - Use Case: After training an XGBoost classifier, compute SHAP values with TreeExplainer, plot a beeswarm chart to rank global feature importance, and use waterfall plots to explain individual misclassified predictions. ## Quick Start Explain my trained XGBoost model's predictions using SHAP and show me a beeswarm plot of the most important features.