-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Static SDCA Multiclass, and Multiclass Evaluator #883
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.
@@ -336,5 +336,70 @@ private sealed class ImplBool : Scalar<bool> | |||
public ImplBool(BinaryClassifierNoCalibration rec) : base(rec, rec._inputs) { } | |||
} | |||
} | |||
|
|||
/// <summary> | |||
/// A reconciler capable of handling the most common cases for binary classification with calibrated outputs. |
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.
binary [](start = 71, length = 6)
multi-class?
/// <param name="label">The label column name.</param> | ||
/// <param name="features">The features column name.</param> | ||
/// <param name="weights">The weights column name, or <c>null</c> if the reconciler was constructed with <c>null</c> weights.</param> | ||
/// <returns>A binary classification trainer estimator.</returns> |
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.
binary [](start = 27, length = 6)
multi-class?
/// <summary> | ||
/// A reconciler capable of handling the most common cases for binary classification with calibrated outputs. | ||
/// </summary> | ||
public sealed class MultiClassifier<TKeyValue> : TrainerEstimatorReconciler |
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.
MultiClassifier [](start = 28, length = 15)
MultiClassClassifier?
Closing what was unique has been merged to #882 |
Related to #632.