aswi2021tri-musketyri-gitlab/Server/ServerApp/Predictor/ModelInput.cs @ 755c25f3
1 |
using Microsoft.ML.Data; |
---|---|
2 | |
3 |
namespace ServerApp.Predictor |
4 |
{
|
5 |
public class ModelInput |
6 |
{
|
7 |
[ColumnName("Label"), LoadColumn(0)] |
8 |
public string Label { get; set; } |
9 | |
10 | |
11 |
[ColumnName("temp"), LoadColumn(1)] |
12 |
public float Temp { get; set; } |
13 | |
14 |
//[ColumnName("date"), LoadColumn(2)]
|
15 |
//public string Col2 { get; set; }
|
16 | |
17 |
//[ColumnName("time"), LoadColumn(3)]
|
18 |
//public string Col3 { get; set; }
|
19 |
}
|
20 |
}
|