C
Casper_L
Guest
Hi Everyone
I have some problem about ML.NET Model input type. i want the structure like as following
public class ModelInput
{
public string Label { get; set; }
public Bitmap ImageSource { get; set; }
}
But the tutorial in the official site just have the following type
public class ModelInput
{
public string Label { get; set; }
public string ImagePath { get; set; }
}
Does anyone have the tutorial about this question?
Thanks
Tutorial
Continue reading...
I have some problem about ML.NET Model input type. i want the structure like as following
public class ModelInput
{
public string Label { get; set; }
public Bitmap ImageSource { get; set; }
}
But the tutorial in the official site just have the following type
public class ModelInput
{
public string Label { get; set; }
public string ImagePath { get; set; }
}
Does anyone have the tutorial about this question?
Thanks
Tutorial
Continue reading...