-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
Create dedicated Neptune hook for metadata logging #10080
base: dev-3.x
Are you sure you want to change the base?
Create dedicated Neptune hook for metadata logging #10080
Conversation
Co-authored-by: Wenwei Zhang <[email protected]>
Co-authored-by: Wenwei Zhang <[email protected]>
…8176) modified: mmdet/utils/util_distribution.py Co-authored-by: Wenwei Zhang <[email protected]>
* Bug fix: open-mmlab#8131 * The better solution from chhluo * open-mmlab#8136 since we changed the filtering type from mask to indexes, we can no longer use ```keep.any()``` to check, because it does not work at index zero. But we can use ``` if keep.size == 0: if self.keep_empty: return None ``` * add a unit test for filtering PolygonMasks * W293 blank line contains whitespace Co-authored-by: Wenwei Zhang <[email protected]> Co-authored-by: m.stepanov <[email protected]>
* Update * Update
* fix typo * fix metafile
* update reppoints readme and metafile * update openimages metafile * update faster rcnn readme and metafile * update convnext readme and metafile * update guided_anchoring metafile * update groie metafile and readme * update reppoints readme and metafile * update metafile * update metafile * release ld and mask_rcnn models * update metafile * update regnet metafile * fix markdown format * Update README.md * Update README.md * Update README.md * Update README.md * update md format * release lad
* Update maskformer.py * Update maskformer_head.py * Update maskformer.py * fix lint * fix lint Co-authored-by: Cedric Luo <[email protected]>
* [Fix]: Fix WandbLogger Hook Error (open-mmlab#8273) * Delete qq_group_qrcode.jpg * Update README_zh-CN.md Co-authored-by: Ayush Thakur <[email protected]>
* tiny add * fix
…en-mmlab#8439) * fix runtime error of "+=" inplace operation in PyTorch 1.10 * minor fix
* Add changelog of v2.25.1 * update changelog
Release v2.25.1
* introduce 3.x in 2.x readme * introduce 3.x in 2.x readme * update
* Upgrade onnxsim to 0.4.0 * Update pytorch2onnx.py * Update pytorch2onnx.py
* Add .github/workflow/stale.yml * modify prompt message in stale.yml * modify check strategy now, issues and prs with any of 'invalid', 'awaiting response' will be checked
Fix HTC link
the parameter of offset is not set as continuous will trigger the runtime error: offset must be continuous
- Modify descriptions - Add example - Add docs link
Inb4 the |
Also, I would like to ask whether anyone has any tips for adding predicted masks to the ground truth? Is there any ready utility present somewhere in the repo? |
Hi @AleksanderWWW !We are grateful for your efforts in helping improve this open-source project during your personal time. |
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
We want to introduce
NeptuneHook
for users who want to log their metadata and models to Neptune.aiModification
Added
NeptuneHook
class and an example config that utilizes itBC-breaking (Optional)
Does the modification introduce changes that break the backward-compatibility of the downstream repos?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
Checklist