Mask.ML/Mask.MLML.ConsoleApp/Program.cs
2022-06-13 17:41:33 +08:00

29 lines
1.1 KiB
C#

// This file was auto-generated by ML.NET Model Builder.
using System;
using Mask_MLML.Model;
namespace Mask_MLML.ConsoleApp
{
class Program
{
static void Main(string[] args)
{
// Create single instance of sample data from first line of dataset for model input
ModelInput sampleData = new ModelInput()
{
ImageSource = @"D:\LancerProject\VsProject\Mask.ML\ImageData\已戴\1.jpg",
};
// Make a single prediction on the sample data and print results
var predictionResult = ConsumeModel.Predict(sampleData);
Console.WriteLine("Using model to make single prediction -- Comparing actual Label with predicted Label from sample data...\n\n");
Console.WriteLine($"ImageSource: {sampleData.ImageSource}");
Console.WriteLine($"\n\nPredicted Label value {predictionResult.Prediction} \nPredicted Label scores: [{String.Join(",", predictionResult.Score)}]\n\n");
Console.WriteLine("=============== End of process, hit any key to finish ===============");
Console.ReadKey();
}
}
}