Files
Time-Series-Analysis/.venv/lib/python3.12/site-packages/pmdarima/warnings.py
2025-07-30 17:09:11 +03:00

17 lines
521 B
Python

# -*- coding: utf-8 -*-
__all__ = [
'ModelFitWarning'
]
class ModelFitWarning(UserWarning):
"""Generic warning used for a model fit that might fail. More descriptive
than simply trying to lump everything into a default UserWarning, which
gives the user no insight into the reason for the warning apart from a
(potentially) cryptic message. This allows the user to understand the
warning emanates from an attempted model fit and originates from within
the pmdarima package.
"""
pass