Projekt

Obecné

Profil

Stáhnout (248 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 9fc5fa93 Roman Kalivoda
using System;
2
using Microsoft.ML.Data;
3
4
namespace ServerApp.Predictor
5
{
6
    public class ModelOutput
7
    {
8
        [ColumnName("PredictedLabel")]
9
        public String Prediction { get; set; }
10
        public float[] Score { get; set; }
11
12
    }
13
}