Mashiro

Results 68 comments of Mashiro

Hi~ you can try to compile mmcv-full like this: `MMCV_WITH_OPS=1 ROCM_HOME=/opt/rocm-4.0.0 python3 setup.py install` `ROCM_HOME` just like `CUDA_HOME`, and it should contain your `rocm` toolkit

1. `EMAHook` is not compatible with `IterBasedRunner` for the following reasons: - Evaluation is controlled by `EvalHook`, and it will not trigger other hooks. - `IterBasedHook` will not trigger `after_train_epoch`...

@makecent Hi~, Thanks for your suggestions. Considering that there may be some hooks after `EvalHook` that require the model to remain in `eval` state, therefore we do not call `model.train`...

> I found unit_ Tests failed. Should I change _mmcv\tests\test_utils\test_progressbar.py_ to fit this change? Thanks for your contribution! I think it is ok to modify the old unit test

It could be better to show the difference of the old progress bar and the new one in the PR message

> I found unit_ Tests failed. Should I change _mmcv\tests\test_utils\test_progressbar.py_ to fit this change? LGTM, approved! BTW, providing a picture may be better to understand :rofl:

Sorry for my late reply (we were on vacation :rofl:)! we'll merge this PR ASAP!

> > Sorry for my late reply (we were on vacation rofl)! we'll merge this PR ASAP! > > Never mind, I was on vacation too. BTW, thanks for your...

Will #2194 solve your problem?

@makecent, Sorry for the late reply. Actually, we do not suggest training with `EpochBaseRunner`, and validation by iteration. Suppose you really want to validate by iteration in `EpochBasedRunner`. In that...