You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a YoloV5 Onnx model with 4 outputs, however I can only use a single output at a time. If I try reading in all 3 in my YoloV4Prediction.cs class, I get 'Parameter is not valid' when I run predictionEngine.Predict( .. ); in Program.cs. Any ideas on how I can use all 3 output classes at the same time?
{ "output", new[] { 1, 25200, 8 } },
{ "445", new[] { 1, 3, 80, 80, 8 } },
{ "506", new[] { 1, 3, 40, 40, 8 } },
{ "567", new[] { 1, 3, 20, 20, 8 } },
The text was updated successfully, but these errors were encountered:
I have a YoloV5 Onnx model with 4 outputs, however I can only use a single output at a time. If I try reading in all 3 in my YoloV4Prediction.cs class, I get 'Parameter is not valid' when I run predictionEngine.Predict( .. ); in Program.cs. Any ideas on how I can use all 3 output classes at the same time?
{ "output", new[] { 1, 25200, 8 } },
{ "445", new[] { 1, 3, 80, 80, 8 } },
{ "506", new[] { 1, 3, 40, 40, 8 } },
{ "567", new[] { 1, 3, 20, 20, 8 } },
The text was updated successfully, but these errors were encountered: