diff --git a/metalearners/slearner.py b/metalearners/slearner.py index da3b1b4..ef83dff 100644 --- a/metalearners/slearner.py +++ b/metalearners/slearner.py @@ -289,12 +289,10 @@ def predict_conditional_average_outcomes( @classmethod def necessary_onnx_models(cls) -> set[str]: raise ValueError( - "The SLearner does not implement this method. Please refer to comment in the tutorial " - "about how to do this." + "The SLearner does not implement this method. Please refer to comment in the tutorial." ) def build_onnx(self, models: Mapping[str, Sequence], output_name: str = "tau"): raise ValueError( - "The SLearner does not implement this method. Please refer to the tutorial " - "on the documentation on how to do this." + "The SLearner does not implement this method. Please refer to comment in the tutorial." )