Prediction.cs 185 Bytes
Newer Older
gaoqiong's avatar
gaoqiong committed
1
2
3
4
5
6
7
8
namespace Microsoft.ML.OnnxRuntime.ResNet50v2Sample
{
    internal class Prediction
    {
        public string Label { get; set; }
        public float Confidence { get; set; }
    }
}