Projekt

Obecné

Profil

Stáhnout (244 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 66c3e0df Roman Kalivoda
        [ColumnName("prediction")]
9 9fc5fa93 Roman Kalivoda
        public String Prediction { get; set; }
10
        public float[] Score { get; set; }
11
12
    }
13
}