PotatoPlan/Game1/Sources/ML/InOut/BigModelOutput.cs

14 lines
248 B
C#
Raw Normal View History

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