Skip to content

Commit

Permalink
add docs for if-else (#785)
Browse files Browse the repository at this point in the history
  • Loading branch information
wxchan authored and guolinke committed Aug 18, 2017
1 parent 42d00f5 commit 01a408e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/Parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This is a page contains all parameters in LightGBM.
***External Links***
* [Laurae++ Interactive Documentation](https://sites.google.com/view/lauraepp/parameters)

***Update of 04/13/2017***
***Update of 08/04/2017***

Default values for the following parameters have changed:

Expand All @@ -29,6 +29,7 @@ The parameter format is `key1=value1 key2=value2 ... ` . And parameters can be s
* `task`, default=`train`, type=enum, options=`train`,`prediction`
* `train` for training
* `prediction` for prediction.
* `convert_model` for converting model file into if-else format, see more information in [Convert model parameters](Parameters.md#convert-model-parameters)
* `application`, default=`regression`, type=enum, options=`regression`,`regression_l1`,`huber`,`fair`,`poisson`,`binary`,`lambdarank`,`multiclass`, alias=`objective`,`app`
* `regression`, regression application
* `regression_l2`, L2 loss, alias=`mean_squared_error`,`mse`
Expand Down Expand Up @@ -285,6 +286,17 @@ Following parameters are used for parallel learning, and only used for base(sock
* `gpu_use_dp`, default=`false`, type=bool
* Set to true to use double precision math on GPU (default using single precision).

## Convert model parameters

This feature is only supported in command line version yet.

* `convert_model_language`, default=`""`, type=string
* only `cpp` is supported yet.
* if `convert_model_language` is set when `task` is set to `train`, the model will also be converted.

* `convert_model`, default=`"gbdt_prediction.cpp"`, type=string
* output file name of converted model.

## Others

### Continued training with input score
Expand Down

0 comments on commit 01a408e

Please sign in to comment.