Skip to content

mmdetection에서 wandb를 epoch 기준으로 찍을 수 있나요? #44

Answered by ppskj178
kmouleejunhyuk asked this question in Q&A
Discussion options

You must be logged in to vote

by_epoch 옵션으로 설정할 수 있어보이는데
epoch 단위로 안되시는거면
어디선가 False로 설정되어있는지 확인해볼 필요가 있어보입니다.

...
class WandbLoggerHook(LoggerHook):

    def __init__(self,
                 init_kwargs=None,
                 interval=10,
                 ignore_last=True,
                 reset_flag=False,
                 commit=True,
                 by_epoch=True,
                 with_step=True):
        super(WandbLoggerHook, self).__init__(interval, ignore_last,
                                              reset_flag, by_epoch)
        self.import_wandb()
        self.init_kwargs = init_kwargs
        self.commit = commit
        self.with_step = with_step
...

자세한건 공식 문서 참고바랍니다.
https://mmcv.readthedocs.io/en/…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@kmouleejunhyuk
Comment options

kmouleejunhyuk Oct 3, 2021
Maintainer Author

@jiwoo0212
Comment options

@kmouleejunhyuk
Comment options

kmouleejunhyuk Oct 5, 2021
Maintainer Author

@jiwoo0212
Comment options

Answer selected by kmouleejunhyuk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants