2026-03-03 22:30:37 +08:00
|
|
|
"""模型子模块
|
|
|
|
|
|
|
|
|
|
包含各种机器学习模型的实现。
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from src.training.components.models.lightgbm import LightGBMModel
|
2026-03-10 22:23:44 +08:00
|
|
|
from src.training.components.models.lightgbm_lambdarank import LightGBMLambdaRankModel
|
2026-03-31 23:11:21 +08:00
|
|
|
from src.training.components.models.tabpfn_model import TabPFNModel
|
|
|
|
|
from src.training.components.models.tabm_model import TabMModel
|
2026-04-01 00:20:05 +08:00
|
|
|
from src.training.components.models.cross_section_sampler import CrossSectionSampler
|
|
|
|
|
from src.training.components.models.ensemble_quant_loss import EnsembleQuantLoss
|
2026-03-03 22:30:37 +08:00
|
|
|
|
2026-04-01 00:20:05 +08:00
|
|
|
__all__ = [
|
|
|
|
|
"LightGBMModel",
|
|
|
|
|
"LightGBMLambdaRankModel",
|
|
|
|
|
"TabPFNModel",
|
|
|
|
|
"TabMModel",
|
|
|
|
|
"CrossSectionSampler",
|
|
|
|
|
"EnsembleQuantLoss",
|
|
|
|
|
]
|