2020-05-23 20:39:05 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.ML.Data;
|
|
|
|
|
|
|
|
|
|
namespace Game1.Sources.ML_Joel
|
|
|
|
|
{
|
|
|
|
|
class Output
|
|
|
|
|
{
|
2020-05-24 01:57:27 +02:00
|
|
|
|
//[ColumnName("PredictedLabel")]
|
2020-05-23 20:39:05 +02:00
|
|
|
|
public float Prediction { get; set; }
|
2020-05-24 01:57:27 +02:00
|
|
|
|
public float Score { get; set; }
|
|
|
|
|
|
|
|
|
|
//[ColumnName("Score")]
|
|
|
|
|
// public float[] Score { get; set; }
|
|
|
|
|
|
2020-05-23 20:39:05 +02:00
|
|
|
|
}
|
|
|
|
|
}
|