-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Remove all spaces in the end of lines #478
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove all spaces in the end of lines #478
Conversation
@@ -37,7 +37,7 @@ public sealed partial class FastTreeTweedieTrainer : BoostingFastTreeTrainerBase | |||
public const string LoadNameValue = "FastTreeTweedieRegression"; | |||
public const string UserNameValue = "FastTree (Boosted Trees) Tweedie Regression"; | |||
public const string Summary = "Trains gradient boosted decision trees to fit target values using a Tweedie loss function. This learner is a generalization of Poisson, compound Poisson, and gamma regression."; | |||
new public const string Remarks = @"<remarks> | |||
public new const string Remarks = @"<remarks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Following the documentation, I see that keyword new
is the first in statements. #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me add real @TomFinley
RoboTom gives this:
warning TLC_ExplicitAccessModifiers: Symbol 'Remarks' did not have access modifiers as the leading modifiers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The cold robotic hand of robotom was not programmed for this eventuality, due to the limitations of its flawed, human, designer. I might prefer to change robotom vs. do this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -32,7 +32,7 @@ public sealed class PoissonRegression : LbfgsTrainerBase<Float, PoissonRegressio | |||
internal const string UserNameValue = "Poisson Regression"; | |||
internal const string ShortName = "PR"; | |||
internal const string Summary = "Poisson Regression assumes the unknown function, denoted Y has a Poisson distribution."; | |||
new internal const string Remarks = @"<remarks> | |||
internal new const string Remarks = @"<remarks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Ivanidzo4ka, It has be reverted here as well...:)
I have opened PR (486) to fix it.
* remove all spaces in the end of lines
It's nice to not have spaces in the end of lines