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
Right now, these column/field names are kind of "secret names" that you need to know.
I don't think this is documented "end-to-end" in docs.microsoft.com, neither in the HOW to / CookBook.
We should have the following info available:
The purpose of the output columns in scored IDataView depends on the specific learning task being used:
Regression
Label: Original regression value of the example.
Score: Predicted regression value.
Binary Classification
Label: Original Label of the example.
Score: Raw score from the learner (e.g. value before applying sigmoid function to get probability).
Probability: Probability of being in certain class
PredictedLabel: Predicted class.
Multi-class Classification
Label: Original Label of the example.
Score: Its an array whose length is equal to number of classes and contains probability for each class.
PredictedLabel: Predicted class.
Clustering
Label: Original cluster Id of the example.
Score: Its an array whose length is equal to number of clusters. It contains square distance from the cluster centeriod.
PredictedLabel: Predicted cluster Id.
This is related to the following issue requesting that info and raised at the ML.NET repo: dotnet/machinelearning#376
This additional issue might also be related: #5640
The text was updated successfully, but these errors were encountered:
Right now, these column/field names are kind of "secret names" that you need to know.
I don't think this is documented "end-to-end" in docs.microsoft.com, neither in the HOW to / CookBook.
We should have the following info available:
The purpose of the output columns in scored IDataView depends on the specific learning task being used:
Regression
Binary Classification
Multi-class Classification
Clustering
This is related to the following issue requesting that info and raised at the ML.NET repo:
dotnet/machinelearning#376
This additional issue might also be related:
#5640
The text was updated successfully, but these errors were encountered: