Skip to content

exceptions

MissingValuesExogWarning(message)

Bases: UserWarning

Warning used to notify there are missing values in the exogenous data. This warning occurs when the input data passed to the exog arguments contains missing values. Most machine learning models do not accept missing values, therefore the forecaster fit and predict may fail.

Source code in skforecast\exceptions\exceptions.py
21
22
def __init__(self, message):
    self.message = message

DataTypeWarning(message)

Bases: UserWarning

Warning used to notify there are dtypes in the exogenous data that are not 'int', 'float', 'bool' or 'category'. Most machine learning models do not accept other data types, therefore the forecaster fit and predict may fail.

Source code in skforecast\exceptions\exceptions.py
38
39
def __init__(self, message):
    self.message = message

LongTrainingWarning(message)

Bases: UserWarning

Warning used to notify that a large number of models will be trained and the the process may take a while to run.

Source code in skforecast\exceptions\exceptions.py
54
55
def __init__(self, message):
    self.message = message

IgnoredArgumentWarning(message)

Bases: UserWarning

Warning used to notify that an argument is ignored when using a method or a function.

Source code in skforecast\exceptions\exceptions.py
70
71
def __init__(self, message):
    self.message = message