Remove deprecated prefix bst: (#2091)

This commit is contained in:
Shaform 2017-03-10 01:06:37 +08:00 committed by Tianqi Chen
parent 95510b9667
commit 15456c7882

View File

@ -66,7 +66,7 @@ Setting Parameters
XGBoost can use either a list of pairs or a dictionary to set [parameters](../parameter.md). For instance:
* Booster parameters
```python
param = {'bst:max_depth':2, 'bst:eta':1, 'silent':1, 'objective':'binary:logistic' }
param = {'max_depth':2, 'eta':1, 'silent':1, 'objective':'binary:logistic' }
param['nthread'] = 4
param['eval_metric'] = 'auc'
```