RatePlanNameAnalysis/RatePlanNameAnalysis.Model/ModelOutput.cs
2024-08-18 21:11:29 +08:00

18 lines
445 B
C#

// This file was auto-generated by ML.NET Model Builder.
using System;
using Microsoft.ML.Data;
namespace RatePlanNameAnalysis.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 BedTypeName { get; set; }
public float[] Score { get; set; }
}
}