From 46e9520a28b4aca9281c938a919620a8754cb4d9 Mon Sep 17 00:00:00 2001 From: Skipper Seabold Date: Wed, 20 May 2015 14:38:45 -0500 Subject: [PATCH] DOC: Document verbose_eval --- wrapper/xgboost.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wrapper/xgboost.py b/wrapper/xgboost.py index a4acd5a7f..a4ad84bf5 100644 --- a/wrapper/xgboost.py +++ b/wrapper/xgboost.py @@ -767,6 +767,9 @@ def train(params, dtrain, num_boost_round=10, evals=(), obj=None, feval=None, bst.best_score and bst.best_iteration. evals_result: dict This dictionary stores the evaluation results of all the items in watchlist + verbose_eval : bool + If `verbose_eval` then the evaluation metric on the validation set, if + given, is printed at each boosting stage. Returns -------