From 674f7f3b27b2cc50e2eff09190adfdcc7294d7ce Mon Sep 17 00:00:00 2001 From: Zeeshan Ahmed Date: Tue, 3 Jul 2018 10:39:45 -0700 Subject: [PATCH] Reverted 'new' modifier to be first in statement. --- .../Standard/PoissonRegression/PoissonRegression.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ML.StandardLearners/Standard/PoissonRegression/PoissonRegression.cs b/src/Microsoft.ML.StandardLearners/Standard/PoissonRegression/PoissonRegression.cs index 4e1739fb28..c5ad4b4495 100644 --- a/src/Microsoft.ML.StandardLearners/Standard/PoissonRegression/PoissonRegression.cs +++ b/src/Microsoft.ML.StandardLearners/Standard/PoissonRegression/PoissonRegression.cs @@ -32,7 +32,7 @@ public sealed class PoissonRegression : LbfgsTrainerBase + new internal const string Remarks = @" Poisson regression is a parameterized regression method. It assumes that the log of the conditional mean of the dependent variable follows a linear function of the dependent variables. Assuming that the dependent variable follows a Poisson distribution, the parameters of the regressor can be estimated by maximizing the likelihood of the obtained observations.