43 lines
913 B
C#
43 lines
913 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.ML.Data;
|
|
|
|
|
|
class BigModelInput
|
|
{
|
|
[ColumnName("Ca"), LoadColumn(0)]
|
|
public float Ca { get; set; }
|
|
|
|
[ColumnName("Mg"), LoadColumn(1)]
|
|
public float Mg { get; set; }
|
|
|
|
[ColumnName("K"), LoadColumn(2)]
|
|
public float K { get; set; }
|
|
|
|
[ColumnName("S"), LoadColumn(3)]
|
|
public float S { get; set; }
|
|
|
|
[ColumnName("N"), LoadColumn(4)]
|
|
public float N { get; set; }
|
|
|
|
[ColumnName("Lime"), LoadColumn(5)]
|
|
public float Lime { get; set; }
|
|
|
|
[ColumnName("C"), LoadColumn(6)]
|
|
public float C { get; set; }
|
|
|
|
[ColumnName("P"), LoadColumn(7)]
|
|
public float P { get; set; }
|
|
|
|
[ColumnName("Moisture"), LoadColumn(8)]
|
|
public float Moisture { get; set; }
|
|
|
|
[ColumnName("Class"), LoadColumn(9)]
|
|
public float Class { get; set; }
|
|
|
|
}
|
|
|