File size: 677 Bytes
47fda1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
HyperOptimized Gradient Boosted Trees (HyperOpt-GBT)

A scikit-learn compatible gradient boosted tree library that synthesizes
best innovations from YDF, CatBoost, XGBoost, and LightGBM.
"""

__version__ = "0.1.0"

from .core import (
    HyperOptGradientBoostedClassifier,
    HyperOptGradientBoostedRegressor,
)
from .inference import (
    compile_inference_engine,
    NaiveEngine,
    FlatTreeEngine,
    BatchedSIMDEngine,
    QuickScorerEngine,
)

__all__ = [
    "HyperOptGradientBoostedClassifier",
    "HyperOptGradientBoostedRegressor",
    "compile_inference_engine",
    "NaiveEngine",
    "FlatTreeEngine",
    "BatchedSIMDEngine",
    "QuickScorerEngine",
]