onnxruntime/csharp/sample/Microsoft.ML.OnnxRuntime.ResNet50v2Sample/Prediction.cs

8 lines
185 B
C#
Raw Normal View History

namespace Microsoft.ML.OnnxRuntime.ResNet50v2Sample
{
internal class Prediction
{
public string Label { get; set; }
public float Confidence { get; set; }
}
}