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