Source code for mllm_shap.shap.monte_carlo.limited
"""Limited Monte Carlo approximation SHAP explainer implementation."""
from ._base import BaseMcShapExplainer
# pylint: disable=too-few-public-methods
[docs]
class LimitedMcShapExplainer(BaseMcShapExplainer):
"""Limited Monte Carlo SHAP implementation."""