Fizzez
Fizzez
> Did you get any error from W&B or MMDetection that you can share? I will test the same on my machine and let you know. Hi @ayulockin I'm facing...
@ayulockin Thank you for the quick reply. > Ideally MMCV's WandbLoggerHook should work in a multi GPU setting given the methods are decorated with @master_only. I see. I thought the...
In my case I used ./configs/yolo/yolov3_d53_mstrain-608_273e_coco.py Also I have checked running with MMCV's `WandbLoggerHook` was fine. It may not be a unique problem ..
Finally managed to solve this by setting `reset_flag=True` in `TextLoggerHook`. (Although it's kind of an ugly fix..) i.e. use config like the following: ```python log_config = dict( interval=50, hooks=[ dict(type='TextLoggerHook',...
Hi @MilkClouds , thank you for the analysis. Glad to see that we have the same option on this. Your solution actually makes more sense by letting `MMDetWandbHook`'s `runner.log_buffer.clear_output()` get...