Skip to content

Commit ad176e5

Browse files
author
Igor Rukhovich
committed
Applied other Ekaterina's comments
1 parent 59303fa commit ad176e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ Refer to the tables below for descriptions of all fields in the configuration fi
3535
|lib| Union[str, List[str]] | **REQUIRED** Test framework or list of frameworks. Must be from [*sklearn*, *daal4py*, *cuml* or *xgboost*] |
3636
|algorithm| string | **REQUIRED** benchmark file name. |
3737
|dataset| List[[Dataset Object](#dataset-object)] | **REQUIRED** input data specifications. |
38-
|**specific algorithm parameters**| Union[int, float, str, List[int], List[float], List[str]] | other specific algorithm parameters. The list of supported parameters can be found here |
38+
|**specific algorithm parameters**| Union[int, float, str, List[int], List[float], List[str]] | Other specific algorithm parameters |
3939

40-
### **Important:** feel free to move any parameter from **cases** to **common** section since this parameter is common for all cases
40+
**Important:** You can move any parameter from **"cases"** to **"common"** if this parameter is common to all cases
4141

4242
## Dataset Object
4343

xgboost_bench/gbt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def convert_xgb_predictions(y_pred, objective):
6565
help='Minimum loss reduction required to make'
6666
' partition on a leaf node')
6767
parser.add_argument('--n-estimators', type=int, default=100,
68-
help='Number of gradient boosted trees')
68+
help='The number of gradient boosted trees')
6969
parser.add_argument('--objective', type=str, required=True,
7070
choices=('reg:squarederror', 'binary:logistic',
7171
'multi:softmax', 'multi:softprob'),

0 commit comments

Comments
 (0)