-
Notifications
You must be signed in to change notification settings - Fork 8k
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
Implement Yolo based on PANet ~+4 AP@[.5, .95] #3175
Comments
Some form of PANet implementation: #3114 (comment) |
Example: cfg-file: https://github.com/AlexeyAB/darknet/files/3253820/yolo_v3_spp_pan_scale.cfg.txt pre-trained weights-file for training: http://pjreddie.com/media/files/darknet53.conv.74 training command: detection command: result training weights-file: https://drive.google.com/file/d/14557YbnxPepJIUlrTdaphhNmMAVLsOqq/view this dataset: https://drive.google.com/open?id=1QzXSCkl9wqr73GHFLIdJ2IIRMgP1OnXG example of detection: https://drive.google.com/open?id=1EcHfzgypfk57pQlLl379c-CKvSy5l3zg example of training Loss & mAP chart: |
Implement Yolo based on PANet: https://arxiv.org/abs/1803.01534v4
There is added very short Bottom-up Path Augmentation - so there are added shortcuts (or conctats) to FPN (Feature Pyramid Networks for Object Detection that is used for Yolo v3), so each of 4 final layers has no more than 10 intermediate layers from any Level.
Also there is added Adaptive Feature Pooling Structure
May be use both Deconvolutional layer and Fully-connected layer as in PANet, or just Deconvolutional layer and YOLACT (You Only Look At CoefficienTs) YOLACT: Add real-time Instance Segmentation #3048
The text was updated successfully, but these errors were encountered: