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
Using the Averaged Perceptron Binary Classifier in the Pipeline:
var pipeline =
//Other things in the pipeline
.Append(mlContext.BinaryClassification.Trainers.AveragedPerceptron(learningRate: lr, numIterations: 5));
//Fit Model steps
//Save Model steps
//Load Model steps
var predictions = loadedModel.Transform(data);
var metrics = mlContextTest.BinaryClassification.Evaluate(predictions);
Leads to the following error.
'Probability column 'Probability' not found
Parameter name: schema'
What Happened
Looking at the outputSchema of the predictions IDataView, the probability column is absent.
Expected Behavior
The Probability column should be available in the predictions IDataView based on reply by @zeahmed here- #376 (comment)
Looking at other binary classifiers like fast tree, that column is present in their output schema.
Issue
Using the Averaged Perceptron Binary Classifier in the Pipeline:
Leads to the following error.
What Happened
Looking at the outputSchema of the predictions IDataView, the probability column is absent.
Expected Behavior
The Probability column should be available in the predictions IDataView based on reply by @zeahmed here- #376 (comment)
Looking at other binary classifiers like fast tree, that column is present in their output schema.
System information
The text was updated successfully, but these errors were encountered: