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