path-boost 2.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
path_boost/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ # Authors: scikit-learn-contrib developers
2
+ # License: MIT
3
+
4
+ import logging
5
+
6
+ from ._path_boost import PathBoost
7
+ from .utils.classes.sequential_path_boost import SequentialPathBoost
8
+ from .utils.classes.sequential_path_boost_classifier import (
9
+ SequentialPathBoostClassifier,
10
+ )
11
+ from ._version import __version__
12
+
13
+ __all__ = [
14
+ "PathBoost",
15
+ "SequentialPathBoost",
16
+ "SequentialPathBoostClassifier",
17
+ "__version__",
18
+ ]