aswi2021tri-musketyri-gitlab/Server/ServerApp/Predictor/ModelOutput.cs @ 662b2404
1 |
// |
---|---|
2 |
// Author: Roman Kalivoda
|
3 |
//
|
4 |
|
5 |
using System; |
6 |
using Microsoft.ML.Data; |
7 |
|
8 |
namespace ServerApp.Predictor |
9 |
{
|
10 |
/// <summary>
|
11 |
/// An output class of the ML.NET classifier model.
|
12 |
/// </summary>
|
13 |
public class ModelOutput |
14 |
{
|
15 |
/// <summary>
|
16 |
/// A predicted class.
|
17 |
/// </summary>
|
18 |
[ColumnName("PredictedLabel")] |
19 |
public String Prediction { get; set; } |
20 |
|
21 |
}
|
22 |
}
|