20 строки
561 B
Python
20 строки
561 B
Python
"""
|
|
Any newly developed model should be added here as imporrted model and then also instantiated inside
|
|
the following function
|
|
|
|
"""
|
|
# DEVELOPER TODO: Add your favorite models bases on abstract class here and also add then to available_models
|
|
from skmodels import SKModel
|
|
from gboost_models import GBoostModel
|
|
|
|
available_models = {
|
|
"linear_model": SKModel,
|
|
"SVR": SKModel,
|
|
"GradientBoostingRegressor": SKModel,
|
|
"sklearn": SKModel,
|
|
"SGDRegressor": SKModel,
|
|
"gboost": GBoostModel,
|
|
"xgboost": GBoostModel,
|
|
"lightgbm": GBoostModel,
|
|
}
|