-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
Closed
Description
Feature-request: YOLOv4-tiny (detector)
- source code: https://github.com/AlexeyAB/darknet
- cfg: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov4-tiny.cfg
- weights: https://github.com/AlexeyAB/darknet/releases/download/darknet_yolo_v4_pre/yolov4-tiny.weights
- discussion: YOLOv4-tiny released: 40.2% AP50, 371 FPS (GTX 1080 Ti), 1770 FPS tkDNN/TensorRT AlexeyAB/darknet#6067
Many other features from Darknet were added previously.
There is required only 1 feature:
- Add
groups=andgroup_id=to the[route]layer.
[route]
layers=-1
groups=2
group_id=1So if input is WxHxC, it divides input into 2 groups WxHx(C/2) (there are 2 groups: 0 and 1), and loads the 2nd group_1 WxHx(C/2).
If there are many layers specified in layers= parameter, then this will be done for each of the input layers specified in layer=, then results will be concatenated across channels.
Reactions are currently unavailable
