onnxruntime/csharp/sample/Microsoft.ML.OnnxRuntime.ResNet50v2Sample/Prediction.cs
Marcus Turewicz 37c45c3d6b
C# ResNet50 v2 sample/tutorial (#4722)
C# ResNet50 v2 sample
  Update samples README
2020-08-07 13:36:36 -07:00

8 lines
No EOL
185 B
C#

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