Skip to content

Commit

Permalink
PR feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
codemzs committed Apr 19, 2019
1 parent 3ab8206 commit 8b920e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -176,7 +176,7 @@ private void MapDist(in VBuffer<float> src, ref float score, ref float prob)
/// | | |
/// | -- | -- |
/// | Machine learning task | Binary classification |
/// | Is normalization required? | Yes |
/// | Is normalization required? | No |
/// | Is caching required? | No |
/// | Required NuGet in addition to Microsoft.ML | None |
///
Expand All @@ -186,7 +186,6 @@ private void MapDist(in VBuffer<float> src, ref float score, ref float prob)
/// </format>
/// </remarks>
/// <seealso cref="Microsoft.ML.StandardTrainersCatalog.Prior(Microsoft.ML.BinaryClassificationCatalog.BinaryClassificationTrainers,System.String,System.String)"/>
/// <seealso cref="Options"/>
public sealed class PriorTrainer : ITrainer<PriorModelParameters>,
ITrainerEstimator<BinaryPredictionTransformer<PriorModelParameters>, PriorModelParameters>
{
Expand Down
Expand Up @@ -854,7 +854,7 @@ private static ICalibratorTrainer GetCalibratorTrainerOrThrow(IExceptionContext
}

/// <summary>
/// Creates <see cref="PriorTrainer"/>, which predict a target using a binary classification model.
/// Create <see cref="PriorTrainer"/>, which predict a target using a binary classification model.
/// </summary>
/// <remarks>
/// This trainer uses the proportion of a label in the training set as the probability of that label.
Expand Down

0 comments on commit 8b920e8

Please sign in to comment.