Mask.ML/Mask.MLML.Model/ModelOutput.cs

17 lines
432 B
C#
Raw Normal View History

2022-06-13 17:41:33 +08:00
// This file was auto-generated by ML.NET Model Builder.
using System;
using Microsoft.ML.Data;
namespace Mask_MLML.Model
{
public class ModelOutput
{
// ColumnName attribute is used to change the column name from
// its default value, which is the name of the field.
[ColumnName("PredictedLabel")]
public String Prediction { get; set; }
public float[] Score { get; set; }
}
}