Use LightGBM algo for classification model training
Enable the LightGBM (Light Gradient-Boosting Machine) algorithm as an advanced option for training classification models.
시작하기 전에
Role required: ml_admin or admin
이 태스크 정보
The LightGBM algorithm offers performance and efficiency for large datasets. For detailed information about this algorithm see https://lightgbm.readthedocs.io.
Use the following procedure to add this option in the solution definition form. Alternatively, you can use a script to add this algorithm.
To add this option using a script:
var config = new MLPredictorConfig('ml_solution_ID');
config.useLightGBM();
config.updateConfig();In JSON format:
{
"use_lightgbm": true
}
프로시저
결과
The setting appears as a row on the Advanced Solution Setting tab on your solution's form.
다음에 수행할 작업
Retrain your solution.