You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Create a <see cref="OneVersusAllTrainer"/>, which predicts a multiclass target using one-versus-all strategy with
728
-
/// the binary classification estimator specified by <paramref name="binaryEstimator"/>.
728
+
/// the binary classification estimator specified by <paramref name="binaryEstimator"/>. If you want to retrieve strongly typed model parameters,
729
+
/// use either the <see cref="OneVersusAllUnCalibratedToCalibrated{TModelIn, TCalibrator}"/> or <see cref="OneVersusAllTyped{TModel}"/> methods instead.
729
730
/// </summary>
730
731
/// <remarks>
731
732
/// <para>
@@ -768,7 +769,8 @@ public static OneVersusAllTrainer OneVersusAll<TModel>(this MulticlassClassifica
768
769
/// Create a <see cref="OneVersusAllTrainer{TModelOut}"/>, which predicts a multiclass target using one-versus-all strategy with
769
770
/// the binary classification estimator specified by <paramref name="binaryEstimator"/>. This method works with binary classifiers that
770
771
/// are either already calibrated, or non calibrated ones you don't want calibrated. If you need to have your classifier calibrated, use the
/// <see cref="OneVersusAllUnCalibratedToCalibrated{TModelIn, TCalibrator}"/> method instead. If you want to retrieve strongly typed model parameters,
773
+
/// you must use either this method or <see cref="OneVersusAllUnCalibratedToCalibrated{TModelIn, TCalibrator}"/> method.
772
774
/// </summary>
773
775
/// <remarks>
774
776
/// <para>
@@ -808,7 +810,8 @@ public static OneVersusAllTrainer<TModel> OneVersusAllTyped<TModel>(this Multicl
808
810
/// the binary classification estimator specified by <paramref name="binaryEstimator"/>.This method works with binary classifiers that
809
811
/// are not calibrated and need to be calibrated before use. Due to the type of estimator changing (from uncalibrated to calibrated), you must manually
810
812
/// specify both the type of the model and the type of the calibrator. If your classifier is already calibrated or it does not need to be, use the
/// <see cref="OneVersusAllTyped{TModel}"/> method instead. If you want to retrieve strongly typed model parameters, you must either use this method or
0 commit comments