-
Notifications
You must be signed in to change notification settings - Fork 9.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
Implementing YOLOv3 architecture #1695
Conversation
Where is the pretrained weight file?? |
please give the download link to "darknet_state_dict_only.pth" |
please give the download link to "darknet_state_dict_only.pth" |
@wuhy08 Hello, great thanks to your contribution. Would you please offer a download link to the pretrained model? |
@CRmost @liugl7
, which is extracted from the author's another repo. If you get things right, please let me known. Thank you. |
Hi @wuhy08 |
Clean the comments in config file
Hi @xvjiarui I cleaned the comments in the config file. The init files have some conflicts. I wonder how to deal with that. |
Hi @wuhy08 |
@wuhy08 |
I will try to merge your current master to my branch, resolve any conflict, and test it. It might take a few days. I will let you know by then. |
# Conflicts: # mmdet/models/anchor_heads/__init__.py # mmdet/models/necks/__init__.py # mmdet/models/utils/__init__.py
everything is ok? |
Hi @xvjiarui Sorry for the delay due to coronavirus. But I pushed more commits to get it streamlined. I haven't use your new Thank you and stay healthy! |
@wuhy08 |
@miaoshuyu add an additional argument
|
* Implement YOLOv3 * Remove unused function * Update yolov3_ms_aug_273e.py Clean the comments in config file * Add README.md * port to mmdet-2.0 api * unify registry * port to ConvModule and remove ConvLayer * Refactor Backbone * Update README * Lint and format * Unify the class name * fix the `label - 1` problem * Move a lot hard-coded params to the __init__ function * Refactor YOLOV3Neck * Add norm_cfg and act_cfg to backbone * Update Config * Fix doc string * Fix nms (thanks to @LMerCy) * Add doc string * Update config * Remove pretrained in head and neck * Add support for conv_cfg in neck * Update mmdet/models/dense_heads/yolo_head.py Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com> * Update mmdet/models/dense_heads/yolo_head.py Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com> * Fix README.md * Fix typos * update config * flake8, yapf, docformatter, etc * Update README * Add conv_cfg to backbone and head * Move some config to arch_settings in backbone * Add doc strings and replace Warning with warnings.warn() * Fix bug. * Update doc * Add _frozen_stages for backbone * Update mmdet/models/backbones/darknet.py Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com> * Fix inplace bug * fix indent * refactor config * set 8GPU lr * fixed typo * update performance table * Resolve conversation * Add anchor generator and coder * fixed test * Finish refactor * refactor anchor order * fixed batch size * Fixed train_cfg * fix yolo assigner * clean up * Fixed format * Update model zoo * change to mmcv pretrain link * add test forward * fixed comma and docstring * Refactor loss * reformat * fixed avg_factor * revert to original * fixed format * update table * fixed BCE Co-authored-by: Haoyu Wu <haoyu.wu@wdc.com> Co-authored-by: Haoyu Wu <wuhy08@users.noreply.github.com> Co-authored-by: Haoyu Wu <wuhaoyu1989@gmail.com> Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com> Co-authored-by: xmpeng <1051323399@qq.com>
Since YOLOv3 is supported by #3083. This PR is closed. Thanks for your contribution. |
Hi @wuhy08 !We are grateful for your efforts in helping improve mmdetection open-source project during your personal time. Welcome to join OpenMMLab Special Interest Group (SIG) private channel on Discord, where you can share your experiences, ideas, and build connections with like-minded peers. To join the SIG channel, simply message moderator— OpenMMLab on Discord or briefly share your open-source contributions in the #introductions channel and we will assist you. Look forward to seeing you there! Join us :https://discord.gg/UjgXkPWNqA Thank you again for your contribution❤ |
Hi MMlab,
I am Haoyu Wu, an employee at Western Digital. I have implemented the YOLOv3 architecture in the mmdetection framework. Hope that is helpful to community. It is noted that the contribution comes from my work at Western Digital, therefore each files have a header of copyright claims. But we agree to use Apache 2.0 license.
I have pretrained weight file. I wonder what is the best way to share that.
Thank you!