Back to list
dkyazzentwatwa

ml-model-explainer

by dkyazzentwatwa

My comprehensive, tested + audited, library of skills to use for ChatGPT.

6🍴 0📅 Jan 20, 2026

SKILL.md


name: ml-model-explainer description: Explain ML model predictions using SHAP values, feature importance, and decision paths with visualizations.

ML Model Explainer

Explain machine learning model predictions using SHAP and feature importance.

Features

  • SHAP Values: Explain individual predictions
  • Feature Importance: Global feature rankings
  • Decision Paths: Trace prediction logic
  • Visualizations: Waterfall, force plots, summary plots
  • Multiple Models: Support for tree-based, linear, neural networks
  • Batch Explanations: Explain multiple predictions

Quick Start

from ml_model_explainer import MLModelExplainer

explainer = MLModelExplainer()
explainer.load_model(model, X_train)

# Explain single prediction
explanation = explainer.explain(X_test[0])
explainer.plot_waterfall('explanation.png')

# Feature importance
importance = explainer.feature_importance()

CLI Usage

python ml_model_explainer.py --model model.pkl --data test.csv --output explanations/

Dependencies

  • shap>=0.42.0
  • scikit-learn>=1.3.0
  • pandas>=2.0.0
  • numpy>=1.24.0
  • matplotlib>=3.7.0

Score

Total Score

55/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon