-
Notifications
You must be signed in to change notification settings - Fork 1.9k
API reference - Fix placeholder links #3359
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
Conversation
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.
LGTM!
Codecov Report
@@ Coverage Diff @@
## master #3359 +/- ##
==========================================
- Coverage 72.69% 72.69% -0.01%
==========================================
Files 807 807
Lines 145172 145172
Branches 16225 16225
==========================================
- Hits 105540 105539 -1
- Misses 35218 35220 +2
+ Partials 4414 4413 -1
|
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.
@@ -21,7 +21,7 @@ namespace Microsoft.ML.Trainers | |||
public abstract class AveragedLinearOptions : OnlineLinearOptions | |||
{ | |||
/// <summary> | |||
/// <a href="tmpurl_lr">Learning rate</a>. | |||
/// Learning rate. |
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.
Should there be the uri here for what tempurl_lr referenced?
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.
@shmoradims I have one comment to review, but it does look good. I am a little confused on why we are replacing the tempurl with the actual link when it looks like in 2356 the point is to use the tempurl. |
@@ -61,7 +61,7 @@ public abstract class AveragedLinearOptions : OnlineLinearOptions | |||
public bool LazyUpdate = true; | |||
|
|||
/// <summary> | |||
/// The L2 weight for <a href='tmpurl_regularization'>regularization</a>. | |||
/// The L2 weight for <a href='https://en.wikipedia.org/wiki/Regularization_(mathematics)'>regularization</a>. |
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 L2 weight for <a href='https://en.wikipedia.org/wiki/Regularization_(mathematics)'>regularization</a>. | |
/// The coefficient of L2-norm for <a href='https://en.wikipedia.org/wiki/Regularization_(mathematics)'>regularization on the weight vector</a>. |
Fixes #2356 with actual links.