Skip to content

PcaTrainer as estimator #996

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

Merged
merged 12 commits into from
Sep 25, 2018
4 changes: 1 addition & 3 deletions src/Microsoft.ML.Data/Scorers/BinaryClassifierScorer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,8 +298,6 @@ private static ColumnType GetPredColType(ColumnType scoreType, ISchemaBoundRowMa
}

private static bool OutputTypeMatches(ColumnType scoreType)
{
return scoreType == NumberType.Float;
}
=> scoreType == NumberType.Float;
}
Copy link
Contributor

@TomFinley TomFinley Sep 25, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bit of a nit, but while you're at it, maybe indent properly. #Closed

}
Loading