jiuxuanth

Results 2 issues of jiuxuanth

I think the code line 402-403 in openpsg/utils/utils.py is error ```python if out_file is not None: mmcv.imwrite(output_viz_graph, osp.join(out_dir, '{}.jpg'.format(i))) ``` It myabe ```python if out_dir is not None: mmcv.imwrite(output_viz_graph, osp.join(out_dir,...

Hello,i want to update a project using mmdet 2.2.0 to mmdet 3.3.0. so how to update the old import to mmdet 3.3.0 ```python # in mmdect 2.2.0 from mmdet.datasets import...