Projekt

Obecné

Profil

Stáhnout (397 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
}
(5-5/8)