-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add XML doc to the ITrainerEstimator interface #2847
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
Codecov Report
@@ Coverage Diff @@
## master #2847 +/- ##
=========================================
+ Coverage 71.71% 71.81% +0.1%
=========================================
Files 809 812 +3
Lines 142522 142644 +122
Branches 16114 16090 -24
=========================================
+ Hits 102203 102441 +238
+ Misses 35884 35822 -62
+ Partials 4435 4381 -54
|
/// <summary> | ||
/// Interface for the Trainer Estimator. | ||
/// </summary> | ||
/// <typeparam name="TTransformer"></typeparam> |
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.
/// <typeparam name="TTransformer"></typeparam> | |
/// <typeparam name="TTransformer">The type of the transformer returned by the estimator.</typeparam> |
/// Interface for the Trainer Estimator. | ||
/// </summary> | ||
/// <typeparam name="TTransformer"></typeparam> | ||
/// <typeparam name="TPredictor"></typeparam> |
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.
/// <typeparam name="TPredictor"></typeparam> | |
/// <typeparam name="TPredictor">The type of the model parameters.</typeparam> |
/// Interface for the Trainer Estimator. | ||
/// </summary> | ||
/// <typeparam name="TTransformer"></typeparam> | ||
/// <typeparam name="TPredictor"></typeparam> | ||
public interface ITrainerEstimator<out TTransformer, out TPredictor> : IEstimator<TTransformer> |
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.
Interesting! It's still named TPredictor
, we have switched to TModel
in out public facing API. If you could rename it here it would be great!
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.
🚀
Just a quick draft for the XML docs to help fix #2629