2018-06-02 04:59:01 +03:00
.. List of parameters is auto generated by LightGBM\helper\parameter_generator.py from LightGBM\include\LightGBM\config.h file.
2018-07-10 12:37:57 +03:00
.. role :: raw-html(raw)
:format: html
2017-10-12 15:34:23 +03:00
Parameters
==========
2018-05-19 08:01:00 +03:00
This page contains descriptions of all parameters in LightGBM.
2017-10-12 15:34:23 +03:00
**List of other helpful links**
- `Python API <./Python-API.rst> `__
- `Parameters Tuning <./Parameters-Tuning.rst> `__
**External Links**
- `Laurae++ Interactive Documentation`_
Parameters Format
-----------------
The parameters format is `` key1=value1 key2=value2 ... `` .
2018-05-19 08:01:00 +03:00
Parameters can be set both in config file and command line.
2017-10-12 15:34:23 +03:00
By using command line, parameters should not have spaces before and after `` = `` .
By using config files, one line can only contain one parameter. You can use `` # `` to comment.
2018-06-09 05:04:04 +03:00
If one parameter appears in both command line and config file, LightGBM will use the parameter from the command line.
2017-10-12 15:34:23 +03:00
2018-06-02 04:59:01 +03:00
.. start params list
2017-10-12 15:34:23 +03:00
Core Parameters
---------------
2018-07-10 12:37:57 +03:00
- `` config `` :raw-html: `<a id="config" title="Permalink to this parameter" href="#config">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` config_file ``
2017-10-12 15:34:23 +03:00
- path of config file
2018-06-06 05:28:14 +03:00
- **Note** : can be used only in CLI version
2017-12-19 18:39:59 +03:00
2018-07-10 12:37:57 +03:00
- `` task `` :raw-html: `<a id="task" title="Permalink to this parameter" href="#task">🔗︎</a>` , default = `` train `` , type = enum, options: `` train `` , `` predict `` , `` convert_model `` , `` refit `` , aliases: `` task_type ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` train `` , for training, aliases: `` training ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` predict `` , for prediction, aliases: `` prediction `` , `` test ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` convert_model `` , for converting model file into if-else format, see more information in `IO Parameters <#io-parameters> `__
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` refit `` , for refitting existing models with new data, aliases: `` refit_tree ``
2017-12-19 18:39:59 +03:00
2018-08-25 11:21:17 +03:00
- **Note** : can be used only in CLI version; for language-specific packages you can use the correspondent functions
2017-12-19 18:39:59 +03:00
2018-07-10 12:37:57 +03:00
- `` objective `` :raw-html: `<a id="objective" title="Permalink to this parameter" href="#objective">🔗︎</a>` , default = `` regression `` , type = enum, options: `` regression `` , `` regression_l1 `` , `` huber `` , `` fair `` , `` poisson `` , `` quantile `` , `` mape `` , `` gammma `` , `` tweedie `` , `` binary `` , `` multiclass `` , `` multiclassova `` , `` xentropy `` , `` xentlambda `` , `` lambdarank `` , aliases: `` objective_type `` , `` app `` , `` application ``
2017-10-12 15:34:23 +03:00
2017-11-16 04:00:06 +03:00
- regression application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` regression_l2 `` , L2 loss, aliases: `` regression `` , `` mean_squared_error `` , `` mse `` , `` l2_root `` , `` root_mean_squared_error `` , `` rmse ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` regression_l1 `` , L1 loss, aliases: `` mean_absolute_error `` , `` mae ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` huber `` , `Huber loss <https://en.wikipedia.org/wiki/Huber_loss> `__
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` fair `` , `Fair loss <https://www.kaggle.com/c/allstate-claims-severity/discussion/24520> `__
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` poisson `` , `Poisson regression <https://en.wikipedia.org/wiki/Poisson_regression> `__
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` quantile `` , `Quantile regression <https://en.wikipedia.org/wiki/Quantile_regression> `__
2017-11-11 12:56:42 +03:00
2018-06-06 05:28:14 +03:00
- `` mape `` , `MAPE loss <https://en.wikipedia.org/wiki/Mean_absolute_percentage_error> `__ , aliases: `` mean_absolute_percentage_error ``
2017-11-11 12:56:42 +03:00
2018-06-06 05:28:14 +03:00
- `` gamma `` , Gamma regression with log-link. It might be useful, e.g., for modeling insurance claims severity, or for any target that might be `gamma-distributed <https://en.wikipedia.org/wiki/Gamma_distribution#Applications> `__
2018-01-21 06:23:49 +03:00
2018-06-06 05:28:14 +03:00
- `` tweedie `` , Tweedie regression with log-link. It might be useful, e.g., for modeling total loss in insurance, or for any target that might be `tweedie-distributed <https://en.wikipedia.org/wiki/Tweedie_distribution#Applications> `__
2018-01-21 06:23:49 +03:00
2018-07-25 05:13:22 +03:00
- `` binary `` , binary `log loss <https://en.wikipedia.org/wiki/Cross_entropy> `__ classification (or logistic regression). Requires labels in {0, 1}; see `` cross-entropy `` application for general probability labels in [0, 1]
2017-11-16 04:00:06 +03:00
- multi-class classification application
2018-06-06 05:28:14 +03:00
- `` multiclass `` , `softmax <https://en.wikipedia.org/wiki/Softmax_function> `__ objective function, aliases: `` softmax ``
2017-11-16 04:00:06 +03:00
2018-06-06 05:28:14 +03:00
- `` multiclassova `` , `One-vs-All <https://en.wikipedia.org/wiki/Multiclass_classification#One-vs.-rest> `__ binary objective function, aliases: `` multiclass_ova `` , `` ova `` , `` ovr ``
2018-01-22 05:29:36 +03:00
- `` num_class `` should be set as well
2017-11-16 04:00:06 +03:00
- cross-entropy application
2018-06-06 05:28:14 +03:00
- `` xentropy `` , objective function for cross-entropy (with optional linear weights), aliases: `` cross_entropy ``
2017-11-16 04:00:06 +03:00
2018-06-06 05:28:14 +03:00
- `` xentlambda `` , alternative parameterization of cross-entropy, aliases: `` cross_entropy_lambda ``
2017-11-16 04:00:06 +03:00
2018-06-06 05:28:14 +03:00
- label is anything in interval [0, 1]
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` lambdarank `` , `lambdarank <https://papers.nips.cc/paper/2971-learning-to-rank-with-nonsmooth-cost-functions.pdf> `__ application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- label should be `` int `` type in lambdarank tasks, and larger number represents the higher relevance (e.g. 0:bad, 1:fair, 2:good, 3:perfect)
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `label_gain <#objective-parameters> `__ can be used to set the gain (weight) of `` int `` label
2017-12-01 15:30:47 +03:00
- all values in `` label `` must be smaller than number of elements in `` label_gain ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` boosting `` :raw-html: `<a id="boosting" title="Permalink to this parameter" href="#boosting">🔗︎</a>` , default = `` gbdt `` , type = enum, options: `` gbdt `` , `` gbrt `` , `` rf `` , `` random_forest `` , `` dart `` , `` goss `` , aliases: `` boosting_type `` , `` boost ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` gbdt `` , traditional Gradient Boosting Decision Tree, aliases: `` gbrt ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` rf `` , Random Forest, aliases: `` random_forest ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` dart `` , `Dropouts meet Multiple Additive Regression Trees <https://arxiv.org/abs/1505.01866> `__
2017-10-12 15:34:23 +03:00
- `` goss `` , Gradient-based One-Side Sampling
2018-07-25 05:13:22 +03:00
- `` data `` :raw-html: `<a id="data" title="Permalink to this parameter" href="#data">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` train `` , `` train_data `` , `` train_data_file `` , `` data_filename ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- path of training data, LightGBM will train from this data
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-25 05:13:22 +03:00
- `` valid `` :raw-html: `<a id="valid" title="Permalink to this parameter" href="#valid">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` test `` , `` valid_data `` , `` valid_data_file `` , `` test_data `` , `` test_data_file `` , `` valid_filenames ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- path(s) of validation/test data, LightGBM will output metrics for these data
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- support multiple validation data, separated by `` , ``
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-25 05:13:22 +03:00
- `` num_iterations `` :raw-html: `<a id="num_iterations" title="Permalink to this parameter" href="#num_iterations">🔗︎</a>` , default = `` 100 `` , type = int, aliases: `` num_iteration `` , `` n_iter `` , `` num_tree `` , `` num_trees `` , `` num_round `` , `` num_rounds `` , `` num_boost_round `` , `` n_estimators `` , constraints: `` num_iterations >= 0 ``
2017-10-12 15:34:23 +03:00
- number of boosting iterations
2017-11-01 12:35:17 +03:00
2018-06-06 05:28:14 +03:00
- **Note** : internally, LightGBM constructs `` num_class * num_iterations `` trees for multi-class classification problems
2017-10-12 15:34:23 +03:00
2018-07-25 05:13:22 +03:00
- `` learning_rate `` :raw-html: `<a id="learning_rate" title="Permalink to this parameter" href="#learning_rate">🔗︎</a>` , default = `` 0.1 `` , type = double, aliases: `` shrinkage_rate `` , `` eta `` , constraints: `` learning_rate > 0.0 ``
2017-10-12 15:34:23 +03:00
- shrinkage rate
- in `` dart `` , it also affects on normalization weights of dropped trees
2018-07-25 05:13:22 +03:00
- `` num_leaves `` :raw-html: `<a id="num_leaves" title="Permalink to this parameter" href="#num_leaves">🔗︎</a>` , default = `` 31 `` , type = int, aliases: `` num_leaf `` , `` max_leaves `` , `` max_leaf `` , constraints: `` num_leaves > 1 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- max number of leaves in one tree
2017-10-12 15:34:23 +03:00
2018-07-25 05:13:22 +03:00
- `` tree_learner `` :raw-html: `<a id="tree_learner" title="Permalink to this parameter" href="#tree_learner">🔗︎</a>` , default = `` serial `` , type = enum, options: `` serial `` , `` feature `` , `` data `` , `` voting `` , aliases: `` tree `` , `` tree_type `` , `` tree_learner_type ``
2017-10-12 15:34:23 +03:00
- `` serial `` , single machine tree learner
2018-06-06 05:28:14 +03:00
- `` feature `` , feature parallel tree learner, aliases: `` feature_parallel ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` data `` , data parallel tree learner, aliases: `` data_parallel ``
2017-11-16 04:00:06 +03:00
2018-06-06 05:28:14 +03:00
- `` voting `` , voting parallel tree learner, aliases: `` voting_parallel ``
2017-10-12 15:34:23 +03:00
- refer to `Parallel Learning Guide <./Parallel-Learning-Guide.rst> `__ to get more details
2018-07-25 05:13:22 +03:00
- `` num_threads `` :raw-html: `<a id="num_threads" title="Permalink to this parameter" href="#num_threads">🔗︎</a>` , default = `` 0 `` , type = int, aliases: `` num_thread `` , `` nthread `` , `` nthreads `` , `` n_jobs ``
2017-10-12 15:34:23 +03:00
- number of threads for LightGBM
2018-06-06 05:28:14 +03:00
- `` 0 `` means default number of threads in OpenMP
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- for the best speed, set this to the number of **real CPU cores** , not the number of threads (most CPUs use `hyper-threading <https://en.wikipedia.org/wiki/Hyper-threading> `__ to generate 2 threads per CPU core)
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- do not set it too large if your dataset is small (for instance, do not use 64 threads for a dataset with 10,000 rows)
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- be aware a task manager or any similar CPU monitoring tool might report that cores not being fully utilized. **This is normal**
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- for parallel learning, do not use all CPU cores because this will cause poor performance for the network communication
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` device_type `` :raw-html: `<a id="device_type" title="Permalink to this parameter" href="#device_type">🔗︎</a>` , default = `` cpu `` , type = enum, options: `` cpu `` , `` gpu `` , aliases: `` device ``
2018-06-06 05:28:14 +03:00
- device for the tree learning, you can use GPU to achieve the faster learning
2017-10-12 15:34:23 +03:00
- **Note** : it is recommended to use the smaller `` max_bin `` (e.g. 63) to get the better speed up
2018-06-06 05:28:14 +03:00
- **Note** : for the faster speed, GPU uses 32-bit float point to sum up by default, so this may affect the accuracy for some tasks. You can set `` gpu_use_dp=true `` to enable 64-bit float point, but it will slow down the training
- **Note** : refer to `Installation Guide <./Installation-Guide.rst#build-gpu-version> `__ to build LightGBM with GPU support
2018-07-25 05:13:22 +03:00
- `` seed `` :raw-html: `<a id="seed" title="Permalink to this parameter" href="#seed">🔗︎</a>` , default = `` 0 `` , type = int, aliases: `` random_seed `` , `` random_state ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- this seed is used to generate other seeds, e.g. `` data_random_seed `` , `` feature_fraction_seed ``
- will be overridden, if you set other seeds
2017-10-12 15:34:23 +03:00
Learning Control Parameters
---------------------------
2018-07-10 12:37:57 +03:00
- `` max_depth `` :raw-html: `<a id="max_depth" title="Permalink to this parameter" href="#max_depth">🔗︎</a>` , default = `` -1 `` , type = int
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- limit the max depth for tree model. This is used to deal with over-fitting when `` #data `` is small. Tree still grows leaf-wise
2017-10-12 15:34:23 +03:00
- `` < 0 `` means no limit
2018-07-10 12:37:57 +03:00
- `` min_data_in_leaf `` :raw-html: `<a id="min_data_in_leaf" title="Permalink to this parameter" href="#min_data_in_leaf">🔗︎</a>` , default = `` 20 `` , type = int, aliases: `` min_data_per_leaf `` , `` min_data `` , `` min_child_samples `` , constraints: `` min_data_in_leaf >= 0 ``
2017-10-12 15:34:23 +03:00
- minimal number of data in one leaf. Can be used to deal with over-fitting
2018-07-10 12:37:57 +03:00
- `` min_sum_hessian_in_leaf `` :raw-html: `<a id="min_sum_hessian_in_leaf" title="Permalink to this parameter" href="#min_sum_hessian_in_leaf">🔗︎</a>` , default = `` 1e-3 `` , type = double, aliases: `` min_sum_hessian_per_leaf `` , `` min_sum_hessian `` , `` min_hessian `` , `` min_child_weight `` , constraints: `` min_sum_hessian_in_leaf >= 0.0 ``
2017-10-12 15:34:23 +03:00
- minimal sum hessian in one leaf. Like `` min_data_in_leaf `` , it can be used to deal with over-fitting
2018-07-10 12:37:57 +03:00
- `` bagging_fraction `` :raw-html: `<a id="bagging_fraction" title="Permalink to this parameter" href="#bagging_fraction">🔗︎</a>` , default = `` 1.0 `` , type = double, aliases: `` sub_row `` , `` subsample `` , `` bagging `` , constraints: `` 0.0 < bagging_fraction <= 1.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- like `` feature_fraction `` , but this will randomly select part of data without resampling
2017-10-12 15:34:23 +03:00
- can be used to speed up training
- can be used to deal with over-fitting
2018-06-06 05:28:14 +03:00
- **Note** : to enable bagging, `` bagging_freq `` should be set to a non zero value as well
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` bagging_freq `` :raw-html: `<a id="bagging_freq" title="Permalink to this parameter" href="#bagging_freq">🔗︎</a>` , default = `` 0 `` , type = int, aliases: `` subsample_freq ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- frequency for bagging
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` 0 `` means disable bagging; `` k `` means perform bagging at every `` k `` iteration
- **Note** : to enable bagging, `` bagging_fraction `` should be set to value smaller than `` 1.0 `` as well
2018-07-10 12:37:57 +03:00
- `` bagging_seed `` :raw-html: `<a id="bagging_seed" title="Permalink to this parameter" href="#bagging_seed">🔗︎</a>` , default = `` 3 `` , type = int, aliases: `` bagging_fraction_seed ``
2018-06-06 05:28:14 +03:00
- random seed for bagging
2018-07-10 12:37:57 +03:00
- `` feature_fraction `` :raw-html: `<a id="feature_fraction" title="Permalink to this parameter" href="#feature_fraction">🔗︎</a>` , default = `` 1.0 `` , type = double, aliases: `` sub_feature `` , `` colsample_bytree `` , constraints: `` 0.0 < feature_fraction <= 1.0 ``
2018-06-06 05:28:14 +03:00
- LightGBM will randomly select part of features on each iteration if `` feature_fraction `` smaller than `` 1.0 `` . For example, if you set it to `` 0.8 `` , LightGBM will select 80% of features before training each tree
2017-10-12 15:34:23 +03:00
- can be used to speed up training
- can be used to deal with over-fitting
2018-07-10 12:37:57 +03:00
- `` feature_fraction_seed `` :raw-html: `<a id="feature_fraction_seed" title="Permalink to this parameter" href="#feature_fraction_seed">🔗︎</a>` , default = `` 2 `` , type = int
2018-06-06 05:28:14 +03:00
- random seed for `` feature_fraction ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` early_stopping_round `` :raw-html: `<a id="early_stopping_round" title="Permalink to this parameter" href="#early_stopping_round">🔗︎</a>` , default = `` 0 `` , type = int, aliases: `` early_stopping_rounds `` , `` early_stopping ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- will stop training if one metric of one validation data doesn't improve in last `` early_stopping_round `` rounds
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` <= 0 `` means disable
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` max_delta_step `` :raw-html: `<a id="max_delta_step" title="Permalink to this parameter" href="#max_delta_step">🔗︎</a>` , default = `` 0.0 `` , type = double, aliases: `` max_tree_output `` , `` max_leaf_output ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to limit the max output of tree leaves
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` <= 0 `` means no constraint
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- the final max output of leaves is `` learning_rate * max_delta_step ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` lambda_l1 `` :raw-html: `<a id="lambda_l1" title="Permalink to this parameter" href="#lambda_l1">🔗︎</a>` , default = `` 0.0 `` , type = double, aliases: `` reg_alpha `` , constraints: `` lambda_l1 >= 0.0 ``
2017-10-12 15:34:23 +03:00
- L1 regularization
2018-07-25 05:13:22 +03:00
- `` lambda_l2 `` :raw-html: `<a id="lambda_l2" title="Permalink to this parameter" href="#lambda_l2">🔗︎</a>` , default = `` 0.0 `` , type = double, aliases: `` reg_lambda `` , `` lambda `` , constraints: `` lambda_l2 >= 0.0 ``
2017-10-12 15:34:23 +03:00
- L2 regularization
2018-07-10 12:37:57 +03:00
- `` min_gain_to_split `` :raw-html: `<a id="min_gain_to_split" title="Permalink to this parameter" href="#min_gain_to_split">🔗︎</a>` , default = `` 0.0 `` , type = double, aliases: `` min_split_gain `` , constraints: `` min_gain_to_split >= 0.0 ``
2018-04-18 10:31:08 +03:00
2018-06-06 05:28:14 +03:00
- the minimal gain to perform split
2018-04-18 10:31:08 +03:00
2018-07-25 05:13:22 +03:00
- `` drop_rate `` :raw-html: `<a id="drop_rate" title="Permalink to this parameter" href="#drop_rate">🔗︎</a>` , default = `` 0.1 `` , type = double, aliases: `` rate_drop `` , constraints: `` 0.0 <= drop_rate <= 1.0 ``
2018-04-18 10:31:08 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` dart ``
2018-04-18 10:31:08 +03:00
2018-07-25 05:13:22 +03:00
- dropout rate: a fraction of previous trees to drop during the dropout
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` max_drop `` :raw-html: `<a id="max_drop" title="Permalink to this parameter" href="#max_drop">🔗︎</a>` , default = `` 50 `` , type = int
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` dart ``
2017-10-12 15:34:23 +03:00
2018-07-25 05:13:22 +03:00
- max number of dropped trees during one boosting iteration
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` <=0 `` means no limit
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` skip_drop `` :raw-html: `<a id="skip_drop" title="Permalink to this parameter" href="#skip_drop">🔗︎</a>` , default = `` 0.5 `` , type = double, constraints: `` 0.0 <= skip_drop <= 1.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` dart ``
2017-10-12 15:34:23 +03:00
2018-07-25 05:13:22 +03:00
- probability of skipping the dropout procedure during a boosting iteration
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` xgboost_dart_mode `` :raw-html: `<a id="xgboost_dart_mode" title="Permalink to this parameter" href="#xgboost_dart_mode">🔗︎</a>` , default = `` false `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` dart ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` , if you want to use xgboost dart mode
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` uniform_drop `` :raw-html: `<a id="uniform_drop" title="Permalink to this parameter" href="#uniform_drop">🔗︎</a>` , default = `` false `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` dart ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` , if you want to use uniform drop
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` drop_seed `` :raw-html: `<a id="drop_seed" title="Permalink to this parameter" href="#drop_seed">🔗︎</a>` , default = `` 4 `` , type = int
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` dart ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- random seed to choose dropping models
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` top_rate `` :raw-html: `<a id="top_rate" title="Permalink to this parameter" href="#top_rate">🔗︎</a>` , default = `` 0.2 `` , type = double, constraints: `` 0.0 <= top_rate <= 1.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` goss ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- the retain ratio of large gradient data
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` other_rate `` :raw-html: `<a id="other_rate" title="Permalink to this parameter" href="#other_rate">🔗︎</a>` , default = `` 0.1 `` , type = double, constraints: `` 0.0 <= other_rate <= 1.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` goss ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- the retain ratio of small gradient data
2018-07-10 12:37:57 +03:00
- `` min_data_per_group `` :raw-html: `<a id="min_data_per_group" title="Permalink to this parameter" href="#min_data_per_group">🔗︎</a>` , default = `` 100 `` , type = int, constraints: `` min_data_per_group > 0 ``
2018-06-06 05:28:14 +03:00
- minimal number of data per categorical group
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` max_cat_threshold `` :raw-html: `<a id="max_cat_threshold" title="Permalink to this parameter" href="#max_cat_threshold">🔗︎</a>` , default = `` 32 `` , type = int, constraints: `` max_cat_threshold > 0 ``
2017-10-12 15:34:23 +03:00
2017-11-01 12:35:17 +03:00
- used for the categorical features
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- limit the max threshold points in categorical features
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` cat_l2 `` :raw-html: `<a id="cat_l2" title="Permalink to this parameter" href="#cat_l2">🔗︎</a>` , default = `` 10.0 `` , type = double, constraints: `` cat_l2 >= 0.0 ``
2018-06-06 05:28:14 +03:00
- used for the categorical features
2017-10-16 09:55:25 +03:00
- L2 regularization in categorcial split
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` cat_smooth `` :raw-html: `<a id="cat_smooth" title="Permalink to this parameter" href="#cat_smooth">🔗︎</a>` , default = `` 10.0 `` , type = double, constraints: `` cat_smooth >= 0.0 ``
2018-06-06 05:28:14 +03:00
- used for the categorical features
- this can reduce the effect of noises in categorical features, especially for categories with few data
2018-07-10 12:37:57 +03:00
- `` max_cat_to_onehot `` :raw-html: `<a id="max_cat_to_onehot" title="Permalink to this parameter" href="#max_cat_to_onehot">🔗︎</a>` , default = `` 4 `` , type = int, constraints: `` max_cat_to_onehot > 0 ``
2017-10-18 05:00:55 +03:00
2017-11-01 12:35:17 +03:00
- when number of categories of one feature smaller than or equal to `` max_cat_to_onehot `` , one-vs-other split algorithm will be used
2018-07-10 12:37:57 +03:00
- `` top_k `` :raw-html: `<a id="top_k" title="Permalink to this parameter" href="#top_k">🔗︎</a>` , default = `` 20 `` , type = int, aliases: `` topk `` , constraints: `` top_k > 0 ``
2017-11-01 12:35:17 +03:00
- used in `Voting parallel <./Parallel-Learning-Guide.rst#choose-appropriate-parallel-algorithm> `__
- set this to larger value for more accurate result, but it will slow down the training speed
2017-10-18 05:00:55 +03:00
2018-07-10 12:37:57 +03:00
- `` monotone_constraints `` :raw-html: `<a id="monotone_constraints" title="Permalink to this parameter" href="#monotone_constraints">🔗︎</a>` , default = `` None `` , type = multi-int, aliases: `` mc `` , `` monotone_constraint ``
2018-04-18 06:12:36 +03:00
2018-05-10 12:48:29 +03:00
- used for constraints of monotonic features
2018-04-18 06:12:36 +03:00
2018-05-10 12:48:29 +03:00
- `` 1 `` means increasing, `` -1 `` means decreasing, `` 0 `` means non-constraint
2018-04-18 06:12:36 +03:00
2018-06-06 05:28:14 +03:00
- you need to specify all features in order. For example, `` mc=-1,0,1 `` means decreasing for 1st feature, non-constraint for 2nd feature and increasing for the 3rd feature
2018-07-25 05:13:22 +03:00
- `` feature_contri `` :raw-html: `<a id="feature_contri" title="Permalink to this parameter" href="#feature_contri">🔗︎</a>` , default = `` None `` , type = multi-double, aliases: `` feature_contrib `` , `` fc `` , `` fp `` , `` feature_penalty ``
2018-06-14 05:27:30 +03:00
- used to control feature's split gain, will use `` gain[i] = max(0, feature_contri[i]) * gain[i] `` to replace the split gain of i-th feature
- you need to specify all features in order
2018-07-10 12:37:57 +03:00
- `` forcedsplits_filename `` :raw-html: `<a id="forcedsplits_filename" title="Permalink to this parameter" href="#forcedsplits_filename">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` fs `` , `` forced_splits_filename `` , `` forced_splits_file `` , `` forced_splits ``
2018-06-06 05:28:14 +03:00
- path to a `` .json `` file that specifies splits to force at the top of every decision tree before best-first learning commences
- `` .json `` file can be arbitrarily nested, and each split contains `` feature `` , `` threshold `` fields, as well as `` left `` and `` right `` fields representing subsplits
- categorical splits are forced in a one-hot fashion, with `` left `` representing the split containing the feature value and `` right `` representing other values
- see `this file <https://github.com/Microsoft/LightGBM/tree/master/examples/binary_classification/forced_splits.json> `__ as an example
2018-04-18 06:12:36 +03:00
2018-08-25 11:21:17 +03:00
- `` refit_decay_rate `` :raw-html: `<a id="refit_decay_rate" title="Permalink to this parameter" href="#refit_decay_rate">🔗︎</a>` , default = `` 0.9 `` , type = double, constraints: `` 0.0 <= refit_decay_rate <= 1.0 ``
- decay rate of `` refit `` task, will use `` leaf_output = refit_decay_rate * old_leaf_output + (1.0 - refit_decay_rate) * new_leaf_output `` to refit trees
- used only in `` refit `` task in CLI version or as argument in `` refit `` function in language-specific package
2017-10-12 15:34:23 +03:00
IO Parameters
-------------
2018-07-10 12:37:57 +03:00
- `` verbosity `` :raw-html: `<a id="verbosity" title="Permalink to this parameter" href="#verbosity">🔗︎</a>` , default = `` 1 `` , type = int, aliases: `` verbose ``
2018-06-06 05:28:14 +03:00
- controls the level of LightGBM's verbosity
- `` < 0 `` : Fatal, `` = 0 `` : Error (Warn), `` > 0 `` : Info
2018-07-10 12:37:57 +03:00
- `` max_bin `` :raw-html: `<a id="max_bin" title="Permalink to this parameter" href="#max_bin">🔗︎</a>` , default = `` 255 `` , type = int, constraints: `` max_bin > 1 ``
2018-06-06 05:28:14 +03:00
- max number of bins that feature values will be bucketed in
- small number of bins may reduce training accuracy but may increase general power (deal with over-fitting)
- LightGBM will auto compress memory according to `` max_bin `` . For example, LightGBM will use `` uint8_t `` for feature value if `` max_bin=255 ``
2018-07-10 12:37:57 +03:00
- `` min_data_in_bin `` :raw-html: `<a id="min_data_in_bin" title="Permalink to this parameter" href="#min_data_in_bin">🔗︎</a>` , default = `` 3 `` , type = int, constraints: `` min_data_in_bin > 0 ``
2018-06-06 05:28:14 +03:00
- minimal number of data inside one bin
- use this to avoid one-data-one-bin (potential over-fitting)
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` bin_construct_sample_cnt `` :raw-html: `<a id="bin_construct_sample_cnt" title="Permalink to this parameter" href="#bin_construct_sample_cnt">🔗︎</a>` , default = `` 200000 `` , type = int, aliases: `` subsample_for_bin `` , constraints: `` bin_construct_sample_cnt > 0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- number of data that sampled to construct histogram bins
- setting this to larger value will give better training result, but will increase data loading time
- set this to larger value if data is very sparse
2018-07-25 05:13:22 +03:00
- `` histogram_pool_size `` :raw-html: `<a id="histogram_pool_size" title="Permalink to this parameter" href="#histogram_pool_size">🔗︎</a>` , default = `` -1.0 `` , type = double, aliases: `` hist_pool_size ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- max cache size in MB for historical histogram
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` < 0 `` means no limit
2018-07-25 05:13:22 +03:00
- `` data_random_seed `` :raw-html: `<a id="data_random_seed" title="Permalink to this parameter" href="#data_random_seed">🔗︎</a>` , default = `` 1 `` , type = int, aliases: `` data_seed ``
2018-06-06 05:28:14 +03:00
- random seed for data partition in parallel learning (excluding the `` feature_parallel `` mode)
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` output_model `` :raw-html: `<a id="output_model" title="Permalink to this parameter" href="#output_model">🔗︎</a>` , default = `` LightGBM_model.txt `` , type = string, aliases: `` model_output `` , `` model_out ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- filename of output model in training
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-25 05:13:22 +03:00
- `` snapshot_freq `` :raw-html: `<a id="snapshot_freq" title="Permalink to this parameter" href="#snapshot_freq">🔗︎</a>` , default = `` -1 `` , type = int, aliases: `` save_period ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- frequency of saving model file snapshot
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to positive value to enable this function. For example, the model file will be snapshotted at each iteration if `` snapshot_freq=1 ``
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-10 12:37:57 +03:00
- `` input_model `` :raw-html: `<a id="input_model" title="Permalink to this parameter" href="#input_model">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` model_input `` , `` model_in ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- filename of input model
- for `` prediction `` task, this model will be applied to prediction data
2017-10-12 15:34:23 +03:00
- for `` train `` task, training will be continued from this model
2018-06-06 05:28:14 +03:00
- **Note** : can be used only in CLI version
2018-07-25 05:13:22 +03:00
- `` output_result `` :raw-html: `<a id="output_result" title="Permalink to this parameter" href="#output_result">🔗︎</a>` , default = `` LightGBM_predict_result.txt `` , type = string, aliases: `` predict_result `` , `` prediction_result `` , `` predict_name `` , `` prediction_name `` , `` pred_name `` , `` name_pred ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- filename of prediction result in `` prediction `` task
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-10 12:37:57 +03:00
- `` initscore_filename `` :raw-html: `<a id="initscore_filename" title="Permalink to this parameter" href="#initscore_filename">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` init_score_filename `` , `` init_score_file `` , `` init_score `` , `` input_init_score ``
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- path of file with training initial scores
2018-06-06 05:28:14 +03:00
- if `` "" `` , will use `` train_data_file `` + `` .init `` (if exists)
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-10 12:37:57 +03:00
- `` valid_data_initscores `` :raw-html: `<a id="valid_data_initscores" title="Permalink to this parameter" href="#valid_data_initscores">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` valid_data_init_scores `` , `` valid_init_score_file `` , `` valid_init_score ``
2018-06-06 05:28:14 +03:00
2018-06-10 03:47:04 +03:00
- path(s) of file(s) with validation initial scores
2018-06-06 05:28:14 +03:00
- if `` "" `` , will use `` valid_data_file `` + `` .init `` (if exists)
- separate by `` , `` for multi-validation data
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-10 12:37:57 +03:00
- `` pre_partition `` :raw-html: `<a id="pre_partition" title="Permalink to this parameter" href="#pre_partition">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` is_pre_partition ``
2018-06-06 05:28:14 +03:00
- used for parallel learning (excluding the `` feature_parallel `` mode)
2017-10-12 15:34:23 +03:00
- `` true `` if training data are pre-partitioned, and different machines use different partitions
2018-07-10 12:37:57 +03:00
- `` enable_bundle `` :raw-html: `<a id="enable_bundle" title="Permalink to this parameter" href="#enable_bundle">🔗︎</a>` , default = `` true `` , type = bool, aliases: `` is_enable_bundle `` , `` bundle ``
2018-06-06 05:28:14 +03:00
- set this to `` false `` to disable Exclusive Feature Bundling (EFB), which is described in `LightGBM: A Highly Efficient Gradient Boosting Decision Tree <https://papers.nips.cc/paper/6907-lightgbm-a-highly-efficient-gradient-boosting-decision-tree> `__
- **Note** : disabling this may cause the slow training speed for sparse datasets
2018-07-10 12:37:57 +03:00
- `` max_conflict_rate `` :raw-html: `<a id="max_conflict_rate" title="Permalink to this parameter" href="#max_conflict_rate">🔗︎</a>` , default = `` 0.0 `` , type = double, constraints: `` 0.0 <= max_conflict_rate < 1.0 ``
2018-06-06 05:28:14 +03:00
- max conflict rate for bundles in EFB
- set this to `` 0.0 `` to disallow the conflict and provide more accurate results
- set this to a larger value to achieve faster speed
2018-07-10 12:37:57 +03:00
- `` is_enable_sparse `` :raw-html: `<a id="is_enable_sparse" title="Permalink to this parameter" href="#is_enable_sparse">🔗︎</a>` , default = `` true `` , type = bool, aliases: `` is_sparse `` , `` enable_sparse `` , `` sparse ``
2018-06-06 05:28:14 +03:00
- used to enable/disable sparse optimization
2018-07-10 12:37:57 +03:00
- `` sparse_threshold `` :raw-html: `<a id="sparse_threshold" title="Permalink to this parameter" href="#sparse_threshold">🔗︎</a>` , default = `` 0.8 `` , type = double, constraints: `` 0.0 < sparse_threshold <= 1.0 ``
2018-06-06 05:28:14 +03:00
- the threshold of zero elements precentage for treating a feature as a sparse one
2018-07-10 12:37:57 +03:00
- `` use_missing `` :raw-html: `<a id="use_missing" title="Permalink to this parameter" href="#use_missing">🔗︎</a>` , default = `` true `` , type = bool
2018-06-06 05:28:14 +03:00
- set this to `` false `` to disable the special handle of missing value
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` zero_as_missing `` :raw-html: `<a id="zero_as_missing" title="Permalink to this parameter" href="#zero_as_missing">🔗︎</a>` , default = `` false `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` to treat all zero as missing values (including the unshown values in libsvm/sparse matrics)
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` false `` to use `` na `` for representing missing values
2018-07-10 12:37:57 +03:00
- `` two_round `` :raw-html: `<a id="two_round" title="Permalink to this parameter" href="#two_round">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` two_round_loading `` , `` use_two_round_loading ``
2017-10-12 15:34:23 +03:00
- set this to `` true `` if data file is too big to fit in memory
2018-06-06 05:28:14 +03:00
- by default, LightGBM will map data file to memory and load features from memory. This will provide faster data loading speed, but may cause run out of memory error when the data file is very big
2018-07-10 12:37:57 +03:00
- `` save_binary `` :raw-html: `<a id="save_binary" title="Permalink to this parameter" href="#save_binary">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` is_save_binary `` , `` is_save_binary_file ``
2018-06-06 05:28:14 +03:00
- if `` true `` , LightGBM will save the dataset (including validation data) to a binary file. This speed ups the data loading for the next time
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` enable_load_from_binary_file `` :raw-html: `<a id="enable_load_from_binary_file" title="Permalink to this parameter" href="#enable_load_from_binary_file">🔗︎</a>` , default = `` true `` , type = bool, aliases: `` load_from_binary_file `` , `` binary_load `` , `` load_binary ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` to enable autoloading from previous saved binary datasets
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` false `` to ignore binary datasets
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` header `` :raw-html: `<a id="header" title="Permalink to this parameter" href="#header">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` has_header ``
2017-10-12 15:34:23 +03:00
- set this to `` true `` if input data has header
2018-07-10 12:37:57 +03:00
- `` label_column `` :raw-html: `<a id="label_column" title="Permalink to this parameter" href="#label_column">🔗︎</a>` , default = `` "" `` , type = int or string, aliases: `` label ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to specify the label column
2017-10-12 15:34:23 +03:00
- use number for index, e.g. `` label=0 `` means column\_0 is the label
- add a prefix `` name: `` for column name, e.g. `` label=name:is_click ``
2018-07-10 12:37:57 +03:00
- `` weight_column `` :raw-html: `<a id="weight_column" title="Permalink to this parameter" href="#weight_column">🔗︎</a>` , default = `` "" `` , type = int or string, aliases: `` weight ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to specify the weight column
2017-10-12 15:34:23 +03:00
- use number for index, e.g. `` weight=0 `` means column\_0 is the weight
- add a prefix `` name: `` for column name, e.g. `` weight=name:weight ``
2018-06-06 05:28:14 +03:00
- **Note** : index starts from `` 0 `` and it doesn't count the label column when passing type is `` int `` , e.g. when label is column\_0, and weight is column\_1, the correct parameter is `` weight=0 ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` group_column `` :raw-html: `<a id="group_column" title="Permalink to this parameter" href="#group_column">🔗︎</a>` , default = `` "" `` , type = int or string, aliases: `` group `` , `` group_id `` , `` query_column `` , `` query `` , `` query_id ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to specify the query/group id column
2017-10-12 15:34:23 +03:00
- use number for index, e.g. `` query=0 `` means column\_0 is the query id
- add a prefix `` name: `` for column name, e.g. `` query=name:query_id ``
2018-06-06 05:28:14 +03:00
- **Note** : data should be grouped by query\_id
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- **Note** : index starts from `` 0 `` and it doesn't count the label column when passing type is `` int `` , e.g. when label is column\_0 and query\_id is column\_1, the correct parameter is `` query=0 ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` ignore_column `` :raw-html: `<a id="ignore_column" title="Permalink to this parameter" href="#ignore_column">🔗︎</a>` , default = `` "" `` , type = multi-int or string, aliases: `` ignore_feature `` , `` blacklist ``
2018-06-06 05:28:14 +03:00
- used to specify some ignoring columns in training
2017-10-12 15:34:23 +03:00
- use number for index, e.g. `` ignore_column=0,1,2 `` means column\_0, column\_1 and column\_2 will be ignored
- add a prefix `` name: `` for column name, e.g. `` ignore_column=name:c1,c2,c3 `` means c1, c2 and c3 will be ignored
2017-11-17 04:09:12 +03:00
- **Note** : works only in case of loading data directly from file
2017-11-16 04:00:06 +03:00
2018-06-06 05:28:14 +03:00
- **Note** : index starts from `` 0 `` and it doesn't count the label column when passing type is `` int ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` categorical_feature `` :raw-html: `<a id="categorical_feature" title="Permalink to this parameter" href="#categorical_feature">🔗︎</a>` , default = `` "" `` , type = multi-int or string, aliases: `` cat_feature `` , `` categorical_column `` , `` cat_column ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to specify categorical features
2017-10-12 15:34:23 +03:00
- use number for index, e.g. `` categorical_feature=0,1,2 `` means column\_0, column\_1 and column\_2 are categorical features
- add a prefix `` name: `` for column name, e.g. `` categorical_feature=name:c1,c2,c3 `` means c1, c2 and c3 are categorical features
2018-06-06 05:28:14 +03:00
- **Note** : only supports categorical with `` int `` type
- **Note** : index starts from `` 0 `` and it doesn't count the label column when passing type is `` int ``
2017-10-12 15:34:23 +03:00
2018-05-22 01:46:44 +03:00
- **Note** : all values should be less than `` Int32.MaxValue `` (2147483647)
2018-08-08 04:58:53 +03:00
- **Note** : all negative values will be treated as **missing values**
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` predict_raw_score `` :raw-html: `<a id="predict_raw_score" title="Permalink to this parameter" href="#predict_raw_score">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` is_predict_raw_score `` , `` predict_rawscore `` , `` raw_score ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` to predict only the raw scores
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` false `` to predict transformed scores
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` predict_leaf_index `` :raw-html: `<a id="predict_leaf_index" title="Permalink to this parameter" href="#predict_leaf_index">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` is_predict_leaf_index `` , `` leaf_index ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` to predict with leaf index of all trees
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` predict_contrib `` :raw-html: `<a id="predict_contrib" title="Permalink to this parameter" href="#predict_contrib">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` is_predict_contrib `` , `` contrib ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
2018-07-15 15:23:29 +03:00
- set this to `` true `` to estimate `SHAP values <https://arxiv.org/abs/1706.06060> `__ , which represent how each feature contributes to each prediction
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- produces `` #features + 1 `` values where the last value is the expected value of the model output over the training data
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` num_iteration_predict `` :raw-html: `<a id="num_iteration_predict" title="Permalink to this parameter" href="#num_iteration_predict">🔗︎</a>` , default = `` -1 `` , type = int
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to specify how many trained iterations will be used in prediction
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` <= 0 `` means no limit
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` pred_early_stop `` :raw-html: `<a id="pred_early_stop" title="Permalink to this parameter" href="#pred_early_stop">🔗︎</a>` , default = `` false `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- if `` true `` , will use early-stopping to speed up the prediction. May affect the accuracy
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` pred_early_stop_freq `` :raw-html: `<a id="pred_early_stop_freq" title="Permalink to this parameter" href="#pred_early_stop_freq">🔗︎</a>` , default = `` 10 `` , type = int
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
- the frequency of checking early-stopping prediction
2018-07-10 12:37:57 +03:00
- `` pred_early_stop_margin `` :raw-html: `<a id="pred_early_stop_margin" title="Permalink to this parameter" href="#pred_early_stop_margin">🔗︎</a>` , default = `` 10.0 `` , type = double
2018-06-06 05:28:14 +03:00
- used only in `` prediction `` task
2017-10-12 15:34:23 +03:00
- the threshold of margin in early-stopping prediction
2018-07-10 12:37:57 +03:00
- `` convert_model_language `` :raw-html: `<a id="convert_model_language" title="Permalink to this parameter" href="#convert_model_language">🔗︎</a>` , default = `` "" `` , type = string
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` convert_model `` task
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- only `` cpp `` is supported yet
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- if `` convert_model_language `` is set and `` task=train `` , the model will be also converted
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-07-10 12:37:57 +03:00
- `` convert_model `` :raw-html: `<a id="convert_model" title="Permalink to this parameter" href="#convert_model">🔗︎</a>` , default = `` gbdt_prediction.cpp `` , type = string, aliases: `` convert_model_file ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` convert_model `` task
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- output filename of converted model
2017-10-12 15:34:23 +03:00
2018-06-10 03:47:04 +03:00
- **Note** : can be used only in CLI version
2018-06-06 05:28:14 +03:00
Objective Parameters
--------------------
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` num_class `` :raw-html: `<a id="num_class" title="Permalink to this parameter" href="#num_class">🔗︎</a>` , default = `` 1 `` , type = int, aliases: `` num_classes `` , constraints: `` num_class > 0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` multi-class `` classification application
2017-10-12 15:34:23 +03:00
2018-07-25 05:13:22 +03:00
- `` is_unbalance `` :raw-html: `<a id="is_unbalance" title="Permalink to this parameter" href="#is_unbalance">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` unbalance `` , `` unbalanced_sets ``
2018-04-24 11:19:54 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` binary `` application
2018-04-24 11:19:54 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` if training data are unbalance
2018-04-24 11:19:54 +03:00
2018-06-06 05:28:14 +03:00
- **Note** : this parameter cannot be used at the same time with `` scale_pos_weight `` , choose only **one** of them
2018-04-24 11:19:54 +03:00
2018-07-10 12:37:57 +03:00
- `` scale_pos_weight `` :raw-html: `<a id="scale_pos_weight" title="Permalink to this parameter" href="#scale_pos_weight">🔗︎</a>` , default = `` 1.0 `` , type = double, constraints: `` scale_pos_weight > 0.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` binary `` application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- weight of labels with positive class
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- **Note** : this parameter cannot be used at the same time with `` is_unbalance `` , choose only **one** of them
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` sigmoid `` :raw-html: `<a id="sigmoid" title="Permalink to this parameter" href="#sigmoid">🔗︎</a>` , default = `` 1.0 `` , type = double, constraints: `` sigmoid > 0.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` binary `` and `` multiclassova `` classification and in `` lambdarank `` applications
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- parameter for the sigmoid function
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` boost_from_average `` :raw-html: `<a id="boost_from_average" title="Permalink to this parameter" href="#boost_from_average">🔗︎</a>` , default = `` true `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` regression `` , `` binary `` and `` cross-entropy `` applications
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- adjusts initial score to the mean of labels for faster convergence
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` reg_sqrt `` :raw-html: `<a id="reg_sqrt" title="Permalink to this parameter" href="#reg_sqrt">🔗︎</a>` , default = `` false `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` regression `` application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used to fit `` sqrt(label) `` instead of original values and prediction result will be also automatically converted to `` prediction^2 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- might be useful in case of large-range labels
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` alpha `` :raw-html: `<a id="alpha" title="Permalink to this parameter" href="#alpha">🔗︎</a>` , default = `` 0.9 `` , type = double, constraints: `` alpha > 0.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` huber `` and `` quantile `` `` regression `` applications
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- parameter for `Huber loss <https://en.wikipedia.org/wiki/Huber_loss> `__ and `Quantile regression <https://en.wikipedia.org/wiki/Quantile_regression> `__
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` fair_c `` :raw-html: `<a id="fair_c" title="Permalink to this parameter" href="#fair_c">🔗︎</a>` , default = `` 1.0 `` , type = double, constraints: `` fair_c > 0.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` fair `` `` regression `` application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- parameter for `Fair loss <https://www.kaggle.com/c/allstate-claims-severity/discussion/24520> `__
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` poisson_max_delta_step `` :raw-html: `<a id="poisson_max_delta_step" title="Permalink to this parameter" href="#poisson_max_delta_step">🔗︎</a>` , default = `` 0.7 `` , type = double, constraints: `` poisson_max_delta_step > 0.0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` poisson `` `` regression `` application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- parameter for `Poisson regression <https://en.wikipedia.org/wiki/Poisson_regression> `__ to safeguard optimization
2018-07-10 12:37:57 +03:00
- `` tweedie_variance_power `` :raw-html: `<a id="tweedie_variance_power" title="Permalink to this parameter" href="#tweedie_variance_power">🔗︎</a>` , default = `` 1.5 `` , type = double, constraints: `` 1.0 <= tweedie_variance_power < 2.0 ``
2018-06-06 05:28:14 +03:00
- used only in `` tweedie `` `` regression `` application
- used to control the variance of the tweedie distribution
- set this closer to `` 2 `` to shift towards a **Gamma** distribution
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this closer to `` 1 `` to shift towards a **Poisson** distribution
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` max_position `` :raw-html: `<a id="max_position" title="Permalink to this parameter" href="#max_position">🔗︎</a>` , default = `` 20 `` , type = int, constraints: `` max_position > 0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` lambdarank `` application
2017-11-11 12:56:42 +03:00
2018-06-06 05:28:14 +03:00
- optimizes `NDCG <https://en.wikipedia.org/wiki/Discounted_cumulative_gain#Normalized_DCG> `__ at this position
2017-11-13 10:46:59 +03:00
2018-07-10 12:37:57 +03:00
- `` label_gain `` :raw-html: `<a id="label_gain" title="Permalink to this parameter" href="#label_gain">🔗︎</a>` , default = `` 0,1,3,7,15,31,63,...,2^30-1 `` , type = multi-double
2017-11-11 12:56:42 +03:00
2018-06-06 05:28:14 +03:00
- used only in `` lambdarank `` application
2018-01-22 05:29:36 +03:00
2018-06-06 05:28:14 +03:00
- relevant gain for labels. For example, the gain of label `` 2 `` is `` 3 `` in case of default label gains
2018-01-22 05:29:36 +03:00
2018-06-06 05:28:14 +03:00
- separate by `` , ``
2018-01-21 06:23:49 +03:00
2017-10-12 15:34:23 +03:00
Metric Parameters
-----------------
2018-07-10 12:37:57 +03:00
- `` metric `` :raw-html: `<a id="metric" title="Permalink to this parameter" href="#metric">🔗︎</a>` , default = `` "" `` , type = multi-enum, aliases: `` metrics `` , `` metric_types ``
2018-06-06 05:28:14 +03:00
- metric(s) to be evaluated on the evaluation sets **in addition** to what is provided in the training arguments
2018-07-25 05:13:22 +03:00
- `` "" `` (empty string or not specified) means that metric corresponding to specified `` objective `` will be used (this is possible only for pre-defined objective functions, otherwise no evaluation metric will be added)
2018-06-06 05:28:14 +03:00
2018-07-31 15:04:41 +03:00
- `` "None" `` (string, **not** a `` None `` value) means that no metric will be registered, aliases: `` na `` , `` null `` , `` custom ``
2018-06-06 05:28:14 +03:00
- `` l1 `` , absolute loss, aliases: `` mean_absolute_error `` , `` mae `` , `` regression_l1 ``
- `` l2 `` , square loss, aliases: `` mean_squared_error `` , `` mse `` , `` regression_l2 `` , `` regression ``
- `` l2_root `` , root square loss, aliases: `` root_mean_squared_error `` , `` rmse ``
- `` quantile `` , `Quantile regression <https://en.wikipedia.org/wiki/Quantile_regression> `__
- `` mape `` , `MAPE loss <https://en.wikipedia.org/wiki/Mean_absolute_percentage_error> `__ , aliases: `` mean_absolute_percentage_error ``
- `` huber `` , `Huber loss <https://en.wikipedia.org/wiki/Huber_loss> `__
- `` fair `` , `Fair loss <https://www.kaggle.com/c/allstate-claims-severity/discussion/24520> `__
- `` poisson `` , negative log-likelihood for `Poisson regression <https://en.wikipedia.org/wiki/Poisson_regression> `__
- `` gamma `` , negative log-likelihood for **Gamma** regression
- `` gamma_deviance `` , residual deviance for **Gamma** regression
- `` tweedie `` , negative log-likelihood for **Tweedie** regression
- `` ndcg `` , `NDCG <https://en.wikipedia.org/wiki/Discounted_cumulative_gain#Normalized_DCG> `__
- `` map `` , `MAP <https://makarandtapaswi.wordpress.com/2012/07/02/intuition-behind-average-precision-and-map/> `__ , aliases: `` mean_average_precision ``
- `` auc `` , `AUC <https://en.wikipedia.org/wiki/Receiver_operating_characteristic#Area_under_the_curve> `__
- `` binary_logloss `` , `log loss <https://en.wikipedia.org/wiki/Cross_entropy> `__ , aliases: `` binary ``
2018-04-21 11:09:13 +03:00
- `` binary_error `` , for one sample: `` 0 `` for correct classification, `` 1 `` for error classification
2018-06-06 05:28:14 +03:00
- `` multi_logloss `` , log loss for multi-class classification, aliases: `` multiclass `` , `` softmax `` , `` multiclassova `` , `` multiclass_ova `` , `` ova `` , `` ovr ``
- `` multi_error `` , error rate for multi-class classification
- `` xentropy `` , cross-entropy (with optional linear weights), aliases: `` cross_entropy ``
- `` xentlambda `` , "intensity-weighted" cross-entropy, aliases: `` cross_entropy_lambda ``
- `` kldiv `` , `Kullback-Leibler divergence <https://en.wikipedia.org/wiki/Kullback%E2%80%93Leibler_divergence> `__ , aliases: `` kullback_leibler ``
2017-11-16 04:00:06 +03:00
2018-04-21 11:09:13 +03:00
- support multiple metrics, separated by `` , ``
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` metric_freq `` :raw-html: `<a id="metric_freq" title="Permalink to this parameter" href="#metric_freq">🔗︎</a>` , default = `` 1 `` , type = int, aliases: `` output_freq `` , constraints: `` metric_freq > 0 ``
2017-10-12 15:34:23 +03:00
- frequency for metric output
2018-07-10 12:37:57 +03:00
- `` is_provide_training_metric `` :raw-html: `<a id="is_provide_training_metric" title="Permalink to this parameter" href="#is_provide_training_metric">🔗︎</a>` , default = `` false `` , type = bool, aliases: `` training_metric `` , `` is_training_metric `` , `` train_metric ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` to output metric result over training dataset
2017-10-12 15:34:23 +03:00
2018-07-12 21:29:25 +03:00
- `` eval_at `` :raw-html: `<a id="eval_at" title="Permalink to this parameter" href="#eval_at">🔗︎</a>` , default = `` 1,2,3,4,5 `` , type = multi-int, aliases: `` ndcg_eval_at `` , `` ndcg_at `` , `` map_eval_at `` , `` map_at ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- used only with `` ndcg `` and `` map `` metrics
2018-07-12 21:29:25 +03:00
- `NDCG <https://en.wikipedia.org/wiki/Discounted_cumulative_gain#Normalized_DCG> `__ and `MAP <https://makarandtapaswi.wordpress.com/2012/07/02/intuition-behind-average-precision-and-map/> `__ evaluation positions, separated by `` , ``
2017-10-12 15:34:23 +03:00
Network Parameters
------------------
2018-07-10 12:37:57 +03:00
- `` num_machines `` :raw-html: `<a id="num_machines" title="Permalink to this parameter" href="#num_machines">🔗︎</a>` , default = `` 1 `` , type = int, aliases: `` num_machine `` , constraints: `` num_machines > 0 ``
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- the number of machines for parallel learning application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- this parameter is needed to be set in both **socket** and **mpi** versions
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` local_listen_port `` :raw-html: `<a id="local_listen_port" title="Permalink to this parameter" href="#local_listen_port">🔗︎</a>` , default = `` 12400 `` , type = int, aliases: `` local_port `` , `` port `` , constraints: `` local_listen_port > 0 ``
2017-10-12 15:34:23 +03:00
- TCP listen port for local machines
2018-06-06 05:28:14 +03:00
- **Note** : don't forget to allow this port in firewall settings before training
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` time_out `` :raw-html: `<a id="time_out" title="Permalink to this parameter" href="#time_out">🔗︎</a>` , default = `` 120 `` , type = int, constraints: `` time_out > 0 ``
2017-10-12 15:34:23 +03:00
- socket time-out in minutes
2018-07-10 12:37:57 +03:00
- `` machine_list_filename `` :raw-html: `<a id="machine_list_filename" title="Permalink to this parameter" href="#machine_list_filename">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` machine_list_file `` , `` machine_list `` , `` mlist ``
2018-06-06 05:28:14 +03:00
- path of file that lists machines for this parallel learning application
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- each line contains one IP and one port for one machine. The format is `` ip port `` (space as a separator)
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` machines `` :raw-html: `<a id="machines" title="Permalink to this parameter" href="#machines">🔗︎</a>` , default = `` "" `` , type = string, aliases: `` workers `` , `` nodes ``
2018-06-06 05:28:14 +03:00
- list of machines in the following format: `` ip1:port1,ip2:port2 ``
2017-10-12 15:34:23 +03:00
GPU Parameters
--------------
2018-07-10 12:37:57 +03:00
- `` gpu_platform_id `` :raw-html: `<a id="gpu_platform_id" title="Permalink to this parameter" href="#gpu_platform_id">🔗︎</a>` , default = `` -1 `` , type = int
2017-10-12 15:34:23 +03:00
2018-05-19 08:01:00 +03:00
- OpenCL platform ID. Usually each GPU vendor exposes one OpenCL platform
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- `` -1 `` means the system-wide default platform
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` gpu_device_id `` :raw-html: `<a id="gpu_device_id" title="Permalink to this parameter" href="#gpu_device_id">🔗︎</a>` , default = `` -1 `` , type = int
2017-10-12 15:34:23 +03:00
- OpenCL device ID in the specified platform. Each GPU in the selected platform has a unique device ID
2018-06-06 05:28:14 +03:00
- `` -1 `` means the default device in the selected platform
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
- `` gpu_use_dp `` :raw-html: `<a id="gpu_use_dp" title="Permalink to this parameter" href="#gpu_use_dp">🔗︎</a>` , default = `` false `` , type = bool
2017-10-12 15:34:23 +03:00
2018-06-06 05:28:14 +03:00
- set this to `` true `` to use double precision math on GPU (by default single precision is used)
2017-10-12 15:34:23 +03:00
2018-06-02 04:59:01 +03:00
.. end params list
2017-10-12 15:34:23 +03:00
Others
------
Continued Training with Input Score
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
LightGBM supports continued training with initial scores. It uses an additional file to store these initial scores, like the following:
::
0.5
-0.1
0.9
...
It means the initial score of the first data row is `` 0.5 `` , second is `` -0.1 `` , and so on.
The initial score file corresponds with data file line by line, and has per score per line.
2018-07-10 12:37:57 +03:00
2017-10-12 15:34:23 +03:00
And if the name of data file is `` train.txt `` , the initial score file should be named as `` train.txt.init `` and in the same folder as the data file.
In this case LightGBM will auto load initial score file if it exists.
2018-07-10 12:37:57 +03:00
Otherwise, you should specify the path to the custom named file with initial scores by the `` initscore_filename `` `parameter <#initscore_filename> `__ .
2017-10-12 15:34:23 +03:00
Weight Data
~~~~~~~~~~~
2018-01-23 03:43:11 +03:00
LightGBM supports weighted training. It uses an additional file to store weight data, like the following:
2017-10-12 15:34:23 +03:00
::
1.0
0.5
0.8
...
It means the weight of the first data row is `` 1.0 `` , second is `` 0.5 `` , and so on.
The weight file corresponds with data file line by line, and has per weight per line.
2018-07-10 12:37:57 +03:00
2018-05-19 08:01:00 +03:00
And if the name of data file is `` train.txt `` , the weight file should be named as `` train.txt.weight `` and placed in the same folder as the data file.
In this case LightGBM will load the weight file automatically if it exists.
2017-10-12 15:34:23 +03:00
2018-07-10 12:37:57 +03:00
Also, you can include weight column in your data file. Please refer to the `` weight_column `` `parameter <#weight_column> `__ in above.
2017-10-12 15:34:23 +03:00
Query Data
~~~~~~~~~~
For LambdaRank learning, it needs query information for training data.
2018-01-23 03:43:11 +03:00
LightGBM uses an additional file to store query data, like the following:
2017-10-12 15:34:23 +03:00
::
27
18
67
...
2018-05-19 08:01:00 +03:00
It means first `` 27 `` lines samples belong to one query and next `` 18 `` lines belong to another, and so on.
2017-10-12 15:34:23 +03:00
**Note** : data should be ordered by the query.
2018-05-19 08:01:00 +03:00
If the name of data file is `` train.txt `` , the query file should be named as `` train.txt.query `` and placed in the same folder as the data file.
2017-10-12 15:34:23 +03:00
In this case LightGBM will load the query file automatically if it exists.
2018-07-10 12:37:57 +03:00
Also, you can include query/group id column in your data file. Please refer to the `` group_column `` `parameter <#group_column> `__ in above.
2017-10-12 15:34:23 +03:00
.. _Laurae++ Interactive Documentation: https://sites.google.com/view/lauraepp/parameters