def get_predictions()

in utils/lookout_equipment_utils.py [0:0]


    def get_predictions(self):
        """
        Get the anomaly ranges predicted by the current model
        
        RETURN
        ======
            predicted_ranges: pandas.DataFrame
                A Pandas dataframe with the predicted anomaly ranges listed in
                chronological order with a Start and End columns
        """
        if self.predicted_ranges is None:
            self._load_model_response()
            
        return self.predicted_ranges