From abae46cbffbcab4ec89ea766cfdf00d52dacc524 Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Thu, 30 Nov 2023 11:31:11 -0500 Subject: [PATCH] Remove TODO that is fixed. --- doc/user/methods/linear_regression.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/user/methods/linear_regression.md b/doc/user/methods/linear_regression.md index 57d6a02595..583d127062 100644 --- a/doc/user/methods/linear_regression.md +++ b/doc/user/methods/linear_regression.md @@ -90,7 +90,6 @@ instead of a manual setting. If training is not done as part of the constructor call, it can be done with the `Train()` function: - * `lr.Train(data, responses, lambda=0.0, intercept=true)` * `lr.Train(data, responses, weights, lambda=0.0, intercept=true)` - Train model on the given data, optionally with instance weights.