Agregar archivos de proyecto.
This commit is contained in:
36
testML/Data.cs
Normal file
36
testML/Data.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using Microsoft.ML.Data;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace testML
|
||||
{
|
||||
public class Data
|
||||
{
|
||||
public string Accession { get; set; }
|
||||
|
||||
public float Enum1 { get; set; }
|
||||
|
||||
public float Enum2 { get; set; }
|
||||
|
||||
public float Enum3 { get; set; }
|
||||
|
||||
public float Enum4 { get; set; }
|
||||
|
||||
public float DecimalNumber { get; set; }
|
||||
|
||||
public float IntegerNumber { get; set; }
|
||||
|
||||
public float OrigenResultNumber { get; set; }
|
||||
|
||||
public string StringTest { get; set; }
|
||||
}
|
||||
|
||||
public class DataPrediction
|
||||
{
|
||||
[ColumnName("Score")]
|
||||
public float IntegerNumber { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user