quant-ai / src /models /__init__.py
Ypeng12's picture
feat: 10/10 HRT style point-in-time alpha research platform, purged walk-forward CV, risk parity & test suite
b54319d
Raw
History Blame Contribute Delete
500 Bytes
"""
Quant.ai Models Module
Implements the Model Hierarchy: Rule-based Momentum Baseline, Ridge/Logistic Regression, LightGBM Regressor/Ranker, and XGBoost.
"""
from .baselines import RawMomentumBaseline, VolAdjMomentumBaseline, LinearRidgeModel, LogisticClassificationModel
from .tree_models import LightGBMModel, XGBoostModel
__all__ = [
"RawMomentumBaseline",
"VolAdjMomentumBaseline",
"LinearRidgeModel",
"LogisticClassificationModel",
"LightGBMModel",
"XGBoostModel",
]