https://github.com/antoinecarme/pyaf
Raw File
Tip revision: fb91bc3c406cdf3e3ca62a12504fcf0e015643cd authored by Antoine Carme on 18 September 2018, 09:41:32 UTC
Add XGBoost based models #98
Tip revision: fb91bc3
__init__.py
# Copyright (C) 2016 Antoine Carme <Antoine.Carme@Laposte.net>
# All rights reserved.

# This file is part of the Python Automatic Forecasting (PyAF) library and is made available under
# the terms of the 3 Clause BSD license

def check_python_version_for_pyaf():
    import six
    if six.PY2:
        raise Exception("PYAF_ERROR_PYTHON_2_NOT_SUPPORTED")


check_python_version_for_pyaf()

from . import ForecastEngine, HierarchicalForecastEngine

__version__ = '1.0.0'

back to top