Projekt

Obecné

Profil

Stáhnout (397 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 4977ce53 Roman Kalivoda
//
2
// Author: Roman Kalivoda
3
//
4
5 9fc5fa93 Roman Kalivoda
using Microsoft.ML.Data;
6
7
namespace ServerApp.Predictor
8
{
9 4977ce53 Roman Kalivoda
    /// <summary>
10
    /// An output class of the ML.NET classifier model.
11
    /// </summary>
12 9fc5fa93 Roman Kalivoda
    public class ModelOutput
13
    {
14 4977ce53 Roman Kalivoda
        /// <summary>
15
        /// A predicted class.
16
        /// </summary>
17 662b2404 Roman Kalivoda
        [ColumnName("PredictedLabel")]
18 ce0940b5 Roman Kalivoda
        public string PredictedLabel { get; set; }
19 4977ce53 Roman Kalivoda
20 9fc5fa93 Roman Kalivoda
    }
21
}