Skip to content

Commit

Permalink
Fix dmlc#3609: Removed unused parameter 'use_buffer' (dmlc#3610)
Browse files Browse the repository at this point in the history
  • Loading branch information
hcho3 authored Aug 21, 2018
1 parent cf2d86a commit b13c3a8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions demo/binary_classification/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ booster = gblinear
# L2 regularization term on weights, default 0
lambda = 0.01
# L1 regularization term on weights, default 0
If ```agaricus.txt.test.buffer``` exists, and automatically loads from binary buffer if possible, this can speedup training process when you do training many times. You can disable it by setting ```use_buffer=0```.
- Buffer file can also be used as standalone input, i.e if buffer file exists, but original agaricus.txt.test was removed, xgboost will still run
* Deviation from LibSVM input format: xgboost is compatible with LibSVM format, with the following minor differences:
- xgboost allows feature index starts from 0
- for binary classification, the label is 1 for positive, 0 for negative, instead of +1,-1
- the feature indices in each line *do not* need to be sorted
alpha = 0.01
# L2 regularization term on bias, default 0
lambda_bias = 0.01
Expand Down
4 changes: 0 additions & 4 deletions doc/parameter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,6 @@ Command Line Parameters
***********************
The following parameters are only used in the console version of XGBoost

* ``use_buffer`` [default=1]

- Whether to create a binary buffer from text input. Doing so normally will speed up loading times

* ``num_round``

- The number of rounds for boosting
Expand Down

0 comments on commit b13c3a8

Please sign in to comment.