16 lines
292 B
C#
16 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.ML.Data;
|
|
|
|
class ModelOutput
|
|
{
|
|
[ColumnName("PredictedLabel")]
|
|
public String Prediction { get; set; }
|
|
//public float[] Score { get; set; }
|
|
|
|
}
|
|
|