PotatoPlan/Game1/Sources/ML_Joel/DataModel/Output.cs
BOTLester 2a7c06fbd2 ML
2020-05-23 20:39:05 +02:00

16 lines
295 B
C#

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
{
[ColumnName("PredictedLabel")]
public float Prediction { get; set; }
}
}