-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
YOLOv4-tiny released #125
Comments
Thank you for your useful information |
I can't use yolov4-tiny in this PyTorch repository, is there any solution? |
This repository is not designed specifically for yolov4-tiny.
Maybe there will be support of yolov4-tiny here in the future. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature-request: YOLOv4-tiny (detector)
There is required only 1 feature:
groups=
andgroup_id=
to the[route]
layer.So if input is
WxHxC
, it divides input into 2 groupsWxHx(C/2)
(there are 2 groups: 0 and 1), and loads the 2nd group_1WxHx(C/2)
.If there are many layers specified in
layers=
parameter, then this will be done for each of the input layers specified inlayer=
, then results will be concatenated across channels.The text was updated successfully, but these errors were encountered: