Skip to content

Commit 17a3813

Browse files
authored
Reverted 'new' modifier to be first in statement. (#486)
1 parent 5bbf7cf commit 17a3813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.StandardLearners/Standard/PoissonRegression/PoissonRegression.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public sealed class PoissonRegression : LbfgsTrainerBase<Float, PoissonRegressio
3232
internal const string UserNameValue = "Poisson Regression";
3333
internal const string ShortName = "PR";
3434
internal const string Summary = "Poisson Regression assumes the unknown function, denoted Y has a Poisson distribution.";
35-
internal new const string Remarks = @"<remarks>
35+
new internal const string Remarks = @"<remarks>
3636
<a href='https://en.wikipedia.org/wiki/Poisson_regression'>Poisson regression</a> is a parameterized regression method.
3737
It assumes that the log of the conditional mean of the dependent variable follows a linear function of the dependent variables.
3838
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.

0 commit comments

Comments
 (0)