1
0

Agregar archivos de proyecto.

This commit is contained in:
2022-11-18 14:04:18 +01:00
parent 30664f0b29
commit e1b0c3f258
7 changed files with 377 additions and 0 deletions

36
testML/Data.cs Normal file
View 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; }
}
}