40 lines
986 B
C#
40 lines
986 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.ML;
|
|
using Microsoft.ML.Data;
|
|
|
|
|
|
class ModelInput
|
|
{
|
|
[ColumnName("Temperature"), LoadColumn(0)]
|
|
public float Temperature { get; set; }
|
|
|
|
[ColumnName("Humidity"), LoadColumn(1)]
|
|
public float Humidity { get; set; }
|
|
|
|
[ColumnName("Moisture"), LoadColumn(2)]
|
|
public float Moisture { get; set; }
|
|
|
|
[ColumnName("Soil_Type"), LoadColumn(3)]
|
|
public String Soil_Type { get; set; }
|
|
|
|
[ColumnName("Crop_Type"), LoadColumn(4)]
|
|
public String Crop_Type { get; set; }
|
|
|
|
[ColumnName("Nitrogen"), LoadColumn(5)]
|
|
public float Nitrogen { get; set; }
|
|
|
|
[ColumnName("Potassium"), LoadColumn(6)]
|
|
public float Potassium { get; set; }
|
|
|
|
[ColumnName("Phosphorous"), LoadColumn(7)]
|
|
public float Phosporous { get; set; }
|
|
|
|
[ColumnName("Fertilizer_Name"), LoadColumn(8)]
|
|
public String Fertilizer_Name { get; set; }
|
|
}
|
|
|