Source code for mllm_shap.shap.neyman.standard
"""Standard Neyman approximation SHAP explainer implementation."""
from ._base import BaseComplementaryNeymanShapExplainer
[docs]
class StandardComplementaryNeymanShapExplainer(BaseComplementaryNeymanShapExplainer):
"""Standard Neyman SHAP Explainer."""
use_standard_method: bool = True