def create_estimator( self, freq: str, prediction_length: int, time_features: bool, training_time: float, validation_milestones: List[float], callbacks: List[Callback], ) -> Estimator: return DummyEstimator(ProphetPredictor, freq=freq, prediction_length=prediction_length)
def create_estimator( self, freq: str, prediction_length: int, time_features: bool, training_time: float, validation_milestones: List[float], callbacks: List[Callback], ) -> Estimator: return DummyEstimator( RForecastPredictor, freq=freq, prediction_length=prediction_length, method_name="stlar", )