Hi. I am running your demo and feel confused about your YOLOv5 demo.
There is a "layers" parameter in the Yolov5.h:
|
std::vector<YoloLayerData> layers{ |
std::vector layers{
{"output", 32, {{116, 90}, {156, 198}, {373, 326}}},
{"413", 16, {{30, 61}, {62, 45}, {59, 119}}},
{"431", 8, {{10, 13}, {16, 30}, {33, 23}}},
};
I wonder what's the meanings of these values?
Hi. I am running your demo and feel confused about your YOLOv5 demo.
There is a "layers" parameter in the Yolov5.h:
TNN_Demo/iOS_TNN_Demo/TNNDemo/Yolov5.h
Line 87 in f361ba0
std::vector layers{
{"output", 32, {{116, 90}, {156, 198}, {373, 326}}},
{"413", 16, {{30, 61}, {62, 45}, {59, 119}}},
{"431", 8, {{10, 13}, {16, 30}, {33, 23}}},
};
I wonder what's the meanings of these values?