bilibilee

Results 9 issues of bilibilee

why need ```time.sleep(2)``` in https://github.com/open-mmlab/mmcv/blob/master/mmcv/runner/epoch_based_runner.py#L46 the statement says: Prevent possible deadlock during epoch transition. when possible deadlock will happen. and more impotant , ```time.sleep(2)``` is not elegant and flexible operation....

FAQ

运行facedect的demo时,出现Uncaught Error: webgl context is lost的错误,谷歌浏览器和edge都存在这样的问题。 ![`Y4 O`MIJ1JHHHYVB$PB9$2](https://user-images.githubusercontent.com/64844447/176987082-f520f184-68f7-4d65-9039-50cb75d763b2.jpg)

# matching.py from scipy.spatial.distance import cdist def embedding_distance(tracks, detections, metric='cosine'): cost_matrix = np.zeros((len(tracks), len(detections)), dtype=np.float) if cost_matrix.size == 0: return cost_matrix det_features = np.asarray([track.curr_feat for track in detections], dtype=np.float) track_features...

hello,I have no idea about parameter cost_limit in lapjv function. It is considered as an upper limit for a cost of a single assignment. Do you mean cost larger than...

作者您好,在阅读你的MMDataParallel源码时发现,53行和77行与mmcv中不符。 你的代码库是return self.module.train_step(*inputs, **kwargs) mmcv代码库是return self.module.train_step(*inputs[0], **kwargs[0]) scatter返回的tuple嘛,应该是需要[0]取一下元素的

in this [Drive](https://drive.google.com/drive/folders/11zG4nJffm0MbvA0Ph19p6jvJFj6VwRAH),Is it intentional or a mistake that coco_proposals.json and coco_pseudo_4764.json are completely identical.

On the open-vocabulary COCO benchmark, do the synthetic images include the 17 novel categories in COCO-OVD? If that is the case, would it be considered as leaking the novel categories?

In the scripts `script/MLLMSD_7b.sh` and `script/SmartEdit_7b.sh`, you have specified `--bf16 True`, yet it seems that the corresponding deepspeed configuration in `scripts/zero_mixed.json` is missing the line `"bf16": {"enabled": "auto"}.` As a...

Thank you for your excellent work, but the open-source code indeed has many minor issues, which makes others hesitant to follow your work. During the TrainStage1 phase, the issues are...