From 113285e1dc3fdc0c709e72a2cb985b3025360897 Mon Sep 17 00:00:00 2001 From: Skipper Seabold Date: Wed, 20 May 2015 14:39:48 -0500 Subject: [PATCH] DOC: Point to parameter.md for eval_metric --- wrapper/xgboost.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrapper/xgboost.py b/wrapper/xgboost.py index a4ad84bf5..adb21a00b 100644 --- a/wrapper/xgboost.py +++ b/wrapper/xgboost.py @@ -1108,7 +1108,7 @@ class XGBModel(XGBModelBase): A list of (X, y) tuple pairs to use as a validation set for early-stopping eval_metric : str, optional - Built-in evaluation metric to use. + Built-in evaluation metric to use. See doc/parameter.md. early_stopping_rounds : int Activates early stopping. Validation error needs to decrease at least every round(s) to continue training. @@ -1197,7 +1197,7 @@ class XGBClassifier(XGBModel, XGBClassifierBase): A list of (X, y) pairs to use as a validation set for early-stopping eval_metric : str - Built-in evaluation metric to use. + Built-in evaluation metric to use. See doc/parameter.md. early_stopping_rounds : int, optional Activates early stopping. Validation error needs to decrease at least every round(s) to continue training.