Skip to content

Commit af1ecb0

Browse files
luisquintanillaCESARDELATORRE
authored andcommitted
Renamed YOLO output parser class (#566)
1 parent 5a622bb commit af1ecb0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

samples/csharp/getting-started/DeepLearning_ObjectDetection_Onnx/ObjectDetectionConsoleApp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static void Main()
3636
IEnumerable<float[]> probabilities = modelScorer.Score(imageDataView);
3737

3838
// Post-process model output
39-
YoloWinMlParser parser = new YoloWinMlParser();
39+
YoloOutputParser parser = new YoloOutputParser();
4040

4141
var boundingBoxes =
4242
probabilities

samples/csharp/getting-started/DeepLearning_ObjectDetection_Onnx/ObjectDetectionConsoleApp/YoloParser/YoloWinMlParser.cs renamed to samples/csharp/getting-started/DeepLearning_ObjectDetection_Onnx/ObjectDetectionConsoleApp/YoloParser/YoloOutputParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace ObjectDetection.YoloParser
77
{
8-
class YoloWinMlParser
8+
class YoloOutputParser
99
{
1010
class CellDimensions : DimensionsBase { }
1111

0 commit comments

Comments
 (0)