Closed
Description
I am testing about document classification.
It return only single label.
I want to list of prediction with weight.
It would look like below,
public class DocumentPrediction
{
[ColumnName("PredictedLabel")]
public string Label {get;set;}
public float Weight {get;set;}
}
,
PredictionModel<DocumentData , List<DocumentPrediction>>
Is that possible with StochasticDualCoordinateAscentClassifier? How can I do that?
There is no ref about this.