2020-05-06 16:27:14 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.ML.Data;
|
|
|
|
|
|
2020-05-10 01:38:08 +02:00
|
|
|
|
class BigModelOutput
|
2020-05-06 16:27:14 +02:00
|
|
|
|
{
|
2020-05-10 01:38:08 +02:00
|
|
|
|
[ColumnName("PredictedLabel")]
|
|
|
|
|
public float Prediction { get; set; }
|
2020-05-06 16:27:14 +02:00
|
|
|
|
}
|
2020-05-10 01:38:08 +02:00
|
|
|
|
|