Hao Li

Results 14 comments of Hao Li

> 请问为什么要把mask_feat_head替换成mask_head呢? mask_feat_head和mask_head对应mmdet中组件的变量名,类似于`backbone`,`bbox_head`。 ## 关于mask_feat_head mask_feat_head是mmdet 1.x版本中`single_stage_ins.py`中的[变量](https://github.com/WXinlong/SOLO/blob/95f3732d5fbb0d7c7044c7dd074f439d48a72ce5/mmdet/models/detectors/single_stage_ins.py#L25)名字 ## 关于mask_head 在mmdet 2.x版本中,`single_stage_ins.py`为`base.py`的继承子类,其变量名在`mmdet.models.detectors.base.py`中已经被定义,如下: ```python @property def with_mask(self): """bool: whether the detector has a mask head""" return ((hasattr(self, 'roi_head') and self.roi_head.with_mask) or (hasattr(self,...

> Thank you for great reply. I'm using 2.22.0 mmdet. I actually retrain solov2 for cityscapes dataset. And the  cityscapes annotations have been converted into the coco format using the cityscapesScripts toolbox according...

机械爪代码?dalao在干啥