PotatoPlan/Game1/Sources/ML/InOut/ModelOutput.cs
2020-05-06 16:27:14 +02:00

18 lines
350 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
{
class ModelOutput
{
[ColumnName("PredictedLabel")]
public String Prediction { get; set; }
//public float[] Score { get; set; }
}
}