nananie143's picture
Upload src/explainability/__init__.py with huggingface_hub
36c1d4f verified
"""Explainability Module - SHAP and LIME based model explanations."""
from .shap_explainer import (
SHAPExplainer,
LIMEExplainer,
PredictionExplainer,
get_explainer,
explain_prediction
)
__all__ = [
'SHAPExplainer',
'LIMEExplainer',
'PredictionExplainer',
'get_explainer',
'explain_prediction'
]