PotatoPlan/Game1/Sources/ML_Joel/DataModel/Output.cs

16 lines
295 B
C#
Raw Normal View History

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