wangliujun

Results 2 issues of wangliujun

### Describe the question you meet Can autoslim be used on mmsegmentation models like [pspnet](https://github.com/open-mmlab/mmsegmentation/tree/master/configs/pspnet) or [segformer](https://github.com/open-mmlab/mmsegmentation/tree/master/configs/segformer)? I can't find search_mmseg.py in dir `tools/mmseg` like [search_mmcls.py](https://github.com/open-mmlab/mmrazor/blob/master/tools/mmcls/search_mmcls.py) in dir `tools/mmcls` Do...

In [inputs/kitti_seg_input.py/L484](https://github.com/MarvinTeichmann/KittiSeg/blob/master/inputs/kitti_seg_input.py#L484), the Line below ```python road = tf.expand_dims(tf.to_float(label[:, :, :, 0]), 3) ``` I think it should be: ```python road = tf.expand_dims(tf.to_float(label[:, :, :, 1]), 3) ``` acording to...