aswi2021tri-musketyri-gitlab/Server/ServerApp/Predictor/ModelOutput.cs @ 66c3e0df
1 |
using System; |
---|---|
2 |
using Microsoft.ML.Data; |
3 |
|
4 |
namespace ServerApp.Predictor |
5 |
{
|
6 |
public class ModelOutput |
7 |
{
|
8 |
[ColumnName("prediction")] |
9 |
public String Prediction { get; set; } |
10 |
public float[] Score { get; set; } |
11 |
|
12 |
}
|
13 |
}
|