Source code for gluonts.model.r_forecast._predictor

# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# or in the "license" file accompanying this file. This file is distributed
# on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
# express or implied. See the License for the specific language governing
# permissions and limitations under the License.

import os
from pathlib import Path
from typing import Dict, Optional, List, Iterator, Tuple

import numpy as np
import pandas as pd

from gluonts.core.component import validated
from gluonts.dataset.common import Dataset
from gluonts.dataset.util import forecast_start
from gluonts.model.forecast import Forecast
from gluonts.model.predictor import RepresentablePredictor
from gluonts.time_feature import get_seasonality

# https://stackoverflow.com/questions/25329955/check-if-r-is-installed-from-python
from subprocess import Popen, PIPE

proc = Popen(["which", "R"], stdout=PIPE, stderr=PIPE)
R_IS_INSTALLED = proc.wait() == 0

try:
    import rpy2.robjects.packages as rpackages
    from rpy2 import rinterface, robjects
    from rpy2.rinterface import RRuntimeError
except ImportError as e:
    rpy2_error_message = str(e)
    RPY2_IS_INSTALLED = False
else:
    RPY2_IS_INSTALLED = True

USAGE_MESSAGE = """
The RForecastPredictor is a thin wrapper for calling the R forecast package.
In order to use it you need to install R and run

pip install 'rpy2>=2.9.*,<3.*'

R -e 'install.packages(c("forecast", "nnfor"),\
repos="https://cloud.r-project.org")'
"""


[docs]class RBasePredictor(RepresentablePredictor): """ The `RBasePredictor` is a thin wrapper for calling R packages. In order to use it you need to install R and run:: pip install 'rpy2>=2.9.*,<3.*' Note that specific R packages need to be installed, depending on which wrapper one needs to run. See `RForecastPredictor` and `RHierarchicalForecastPredictor` to know which packages are needed. Parameters ---------- freq The granularity of the time series (e.g. '1H') prediction_length Number of time points to be predicted. period The period to be used (this is called `frequency` in the R forecast package), result to a tentative reasonable default if not specified (for instance 24 for hourly freq '1H') trunc_length Maximum history length to feed to the model (some models become slow with very long series). r_file_prefix Prefix string of the R file(s) where our forecasting wrapper methods can be found. This is to avoid loading all R files potentially having different implementations of the same method, thereby making sure the expected R method is in fact used. """ @validated() def __init__( self, freq: str, prediction_length: int, period: int = None, trunc_length: Optional[int] = None, r_file_prefix: str = "", ) -> None: super().__init__(prediction_length=prediction_length) if not R_IS_INSTALLED: raise ImportError("R is not Installed! \n " + USAGE_MESSAGE) if not RPY2_IS_INSTALLED: raise ImportError(rpy2_error_message + USAGE_MESSAGE) self._robjects = robjects self._rinterface = rinterface self._rinterface.initr() self._rpackages = rpackages this_dir = os.path.dirname(os.path.realpath(__file__)) this_dir = this_dir.replace("\\", "/") # for windows r_files = [ n[:-2] for n in os.listdir(f"{this_dir}/R/") if n[-2:] == ".R" and n.startswith(r_file_prefix) ] for n in r_files: try: path = Path(this_dir, "R", f"{n}.R") robjects.r(f'source("{path}")'.replace("\\", "\\\\")) except RRuntimeError as er: raise RRuntimeError(str(er) + USAGE_MESSAGE) from er self._stats_pkg = rpackages.importr("stats") self.prediction_length = prediction_length self.period = period if period is not None else get_seasonality(freq) self.trunc_length = trunc_length def _unlist(self, l): if ( type(l).__name__.endswith("Vector") and type(l).__name__ != "ListVector" ): return [self._unlist(x) for x in l] elif type(l).__name__ == "ListVector": return [self._unlist(x) for x in l] elif type(l).__name__ == "Matrix": return np.array(l) else: return l def _get_r_forecast(self, data: Dict, params: Dict) -> Dict: """ Get forecasts from an R method. Parameters ---------- data Dictionary containing the `target` time series. params Dictionary containing the hyper-parameters. Returns ------- Dictionary Forecasts saved in a dictionary. """ raise NotImplementedError() def _run_r_forecast( self, data: Dict, params: Dict, save_info: bool ) -> Tuple[Dict, List]: """ Run an R forecast method. Parameters ---------- data Dictionary containing the `target` time series. params Dictionary containing the hyper-parameters. save_info Should console output from R methods be saved? Returns ------- Tuple[Dict, List]: """ buf = [] def save_to_buf(x): buf.append(x) def dont_save(x): pass f = save_to_buf if save_info else dont_save # save output from the R console in buf self._rinterface.set_writeconsole_regular(f) self._rinterface.set_writeconsole_warnerror(f) forecast_dict = self._get_r_forecast(data=data, params=params) self._rinterface.set_writeconsole_regular( self._rinterface.consolePrint ) self._rinterface.set_writeconsole_warnerror( self._rinterface.consolePrint ) return forecast_dict, buf def _preprocess_data(self, data: Dict) -> Dict: """ Preprocessing of target time series, e.g., truncating length or slicing bottom time series in case of hierarchical forecasting etc. Parameters ---------- data Dictionary containing target time series. Returns ------- Dict """ raise NotImplementedError() def _override_params( self, params: Dict, num_samples: int, intervals: Optional[List] = None, ) -> Dict: """ Override default parameters depending on method type and with parameters given at predict time. Parameters ---------- params Dictionary containing all hyper-parameters. num_samples Number of samples to store in sample based forecast. intervals Prediction intervals for the quantile based forecast. Returns ------- Dict """ return params def _warning_message(self) -> None: """ Prints warning messages (once per whole dataset), e.g., if default parameters are overridden. Returns ------- """ return def _forecast_dict_to_obj( self, forecast_dict: Dict, num_samples: int, forecast_start_date: pd.Timestamp, item_id: Optional[str], info: Dict, ) -> Forecast: """ Returns object of type `gluonts.model.Forecast`. Parameters ---------- forecast_dict Dictionary containing `samples` or `quantiles`. num_samples Number of samples to keep in the forecast object. forecast_start_date Start date of the forecast. item_id Item identifier. info Additional information. Returns ------- Forecast Sample based or quantile based forecasts. """ raise NotImplementedError()
[docs] def predict( self, dataset: Dataset, num_samples: int = 100, intervals: Optional[List] = None, save_info: bool = False, **kwargs, ) -> Iterator[Forecast]: """ Parameters ---------- dataset Dataset of all time series. num_samples Number of samples to store in sample based forecast. intervals Prediction intervals for the quantile based forecast. save_info Should console output from R methods be saved? kwargs Returns ------- Iterator[Forecast] Iterator over gluonts `Forecast` object. """ self._warning_message() for data in dataset: data = self._preprocess_data(data=data) params = self._override_params( params=self.params.copy(), num_samples=num_samples, intervals=intervals, ) forecast_dict, console_output = self._run_r_forecast( data, params, save_info=save_info ) info = ( {"console_output": "\n".join(console_output)} if save_info else None ) yield self._forecast_dict_to_obj( forecast_dict=forecast_dict, num_samples=num_samples, forecast_start_date=forecast_start(data), item_id=data.get("item_id", None), info=info, )