0
0
RhSolutions-ML/RhSolutions.ML.Lib/Product.cs

16 lines
280 B
C#
Raw Normal View History

2023-09-20 08:18:22 +03:00
using Microsoft.ML.Data;
namespace RhSolutions.ML;
public class Product
{
[LoadColumn(0)]
public string? Name { get; set; }
[LoadColumn(1)]
public string? Type { get; set; }
}
public class TypePrediction
{
[ColumnName("PredictedLabel")]
public string? Type { get; set; }
}