[docs]classInterpreter:"""Base class for all interpretation methods."""# Can use these lists to specify the models/estimators/refuters that a particular interpreter supports. Throw a ValueError if the user provides an incompatible object to intepret.SUPPORTED_MODELS=[]SUPPORTED_ESTIMATORS=[]SUPPORTED_REFUTERS=[]def__init__(self,instance,**kwargs):"""Initialize an interpreter. :param instance: An object of type CausalModel, CausalEstimate or CausalRefutation. """self.model=Noneself.estimate=Noneself.refutation=Noneifisinstance(instance,dowhy.causal_model.CausalModel):self.model=instanceelifisinstance(instance,dowhy.causal_estimator.CausalEstimate):self.estimate=instanceelifisinstance(instance,dowhy.causal_refuter.CausalRefutation):self.refutation=instanceelse:self.logger.error("Type of object passed not supported for interpretation.")# Unpacking the keyword argumentsifkwargsisnotNone:forkey,valueinkwargs.items():setattr(self,key,value)self.logger=logging.getLogger(__name__)
[docs]definterpret(self):"""Method that implements the functionality of an interpreter. To be overridden by interpreter sub-classes. """raiseNotImplementedError