提交 031d89ee 编写于 作者: L LielinJiang

fix nas python3 bug

上级 de70278e
......@@ -46,7 +46,7 @@ SLIM:
## 训练与评估
执行以下命令,边训练边评估
```shell
python -u ./slim/nas/train_nas.py --log_steps 10 --cfg configs/deeplabv3p_mobilenetv2_cityscapes.yaml --use_gpu --use_mpio \
CUDA_VISIBLE_DEVICES=0 python -u ./slim/nas/train_nas.py --log_steps 10 --cfg configs/deeplabv3p_mobilenetv2_cityscapes.yaml --use_gpu --use_mpio \
SLIM.NAS_PORT 23333 \
SLIM.NAS_ADDRESS "" \
SLIM.NAS_SEARCH_STEPS 2 \
......
......@@ -180,7 +180,7 @@ class MobileNetV2SpaceSeg(SearchSpaceBase):
c=int(c * self.scale),
n=n,
s=s,
k=k,
k=int(k),
name='mobilenetv2_conv' + str(i))
in_c = int(c * self.scale)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册