We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mmyolo 공식문서에는 WandbVisBackend가 있는데, mmdet에서처럼 MMDetWandbHook이 없다.
WandbVisBackend
MMDetWandbHook
visualizer = dict(vis_backends=[dict(type='LocalVisBackend'), dict(type='WandbVisBackend')])
WandbVisBackend를 사용하면 각자 프로젝트가 새로 생성되면서 기록되어서, 하나의 프로젝트에 기록할 수가 없는 문제가 있다.
mmdet에서 WandbLoggerHook을 바탕으로 MMDetWandbHook를 만들었듯이, MMYoloWandbHook을 만들어야 할 수도
WandbLoggerHook
MMYoloWandbHook
from mmcv.runner.hooks.logger.wandb import WandbLoggerHook @HOOKS.register_module() class MMDetWandbHook(WandbLoggerHook):
The text was updated successfully, but these errors were encountered:
MMEngine의 vis_backend.py를 확인해보니 init_kwargs를 그대로 적용할 수가 있습니다.
vis_backends = [ dict(type="LocalVisBackend"), dict( type="WandbVisBackend", init_kwargs={ "entity": "boostcamp-ai-tech-4-cv-17", "project": "Final Project", "name": "test", }, ), ]
위와 같이 사용하면 되겠습니다.
Sorry, something went wrong.
mmengine WandbVisBackend
mmcv WandbLoggerHook
mmdetection MMDetWandbHook
No branches or pull requests
mmyolo 공식문서에는
WandbVisBackend
가 있는데, mmdet에서처럼MMDetWandbHook
이 없다.WandbVisBackend
를 사용하면 각자 프로젝트가 새로 생성되면서 기록되어서, 하나의 프로젝트에 기록할 수가 없는 문제가 있다.mmdet에서
WandbLoggerHook
을 바탕으로MMDetWandbHook
를 만들었듯이,MMYoloWandbHook
을 만들어야 할 수도The text was updated successfully, but these errors were encountered: