I selected Text Classification in Model Builder and was able to evaluate the model with sample data. I get multiple results rows with percent accuracy in Visual Studio plugin like below:
Results
Result1 60%
Result2 5%
Result3 <1%
Result4 <1%
Result5 <1%
However when using the generated model code I only get one prediction result using
var predictionResult = ConsumeModel.Predict(input);
Question: How do I use the generated model to return multiple prediction results with percentage accuracy for one model input? Similar to how model builder displays in the Evaluate step in Visual Studio plugin.