From 62bd02be56017d4eace409ceb1bb9fb220c5e405 Mon Sep 17 00:00:00 2001 From: Junwen Yao Date: Sun, 26 Dec 2021 19:13:41 -0800 Subject: [PATCH] Fix command in xgboost example readme (#5202) Signed-off-by: Junwen Yao --- examples/xgboost/xgboost_sklearn/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/xgboost/xgboost_sklearn/README.md b/examples/xgboost/xgboost_sklearn/README.md index 26d0972c2d83f..b36bb5ac391b4 100644 --- a/examples/xgboost/xgboost_sklearn/README.md +++ b/examples/xgboost/xgboost_sklearn/README.md @@ -5,8 +5,9 @@ This example trains an [`XGBoost.XGBRegressor`](https://xgboost.readthedocs.io/e Like the other XGBoost example, we enable autologging for XGBoost scikit-learn models via `mlflow.xgboost.autolog()`. Saving / loading models also supports XGBoost scikit-learn models. You can run this example using the following command: + ``` -python train_sklearn.py +python train.py ```