Skip to content

Commit b5697b4

Browse files
srsaggamDmitry-A
authored andcommitted
Made changes to Have non-calibrated scoring for binary classifiers (dotnet#86)
* Added sequential grouping of columns * reverted the file * added calibration workaround * removed print probability * reverted settings
1 parent 01dc259 commit b5697b4

File tree

5 files changed

+183
-202
lines changed

5 files changed

+183
-202
lines changed

src/mlnet/Commands/NewCommand.cs

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ internal class NewCommand
1818
{
1919
internal static void Run(Options options)
2020
{
21+
if (options.MlTask == TaskKind.MulticlassClassification)
22+
{
23+
Console.WriteLine($"Unsupported ml-task: {options.MlTask}");
24+
}
25+
2126
var context = new MLContext();
2227
var label = options.LabelName;
2328

0 commit comments

Comments
 (0)