MAC下deeplab_V3+测试自带例程“local_test_mobilenetv2.sh”
程序员文章站
2024-01-16 09:03:28
...
deeplab_V3自带测试shell(如下图),现在我们测试下mobilentv2网络。
- 修改“local_test_mobilenetv2.sh”第75行的迭代次数(原来是10),10的情况下训练的网络非常差,vis测试时识别的都是乱七八糟的东西。这里我改成了10000,识别出的效果会好很多。
# Train 10 iterations. NUM_ITERATIONS=10000
- 改“local_test_mobilenetv2.sh”第45行执行另一个shell
sh download_and_convert_voc2012.sh
我们进入到这个shell中(再datasets文件夹里),然后屏蔽掉第60行
# Download the images. BASE_URL="http://host.robots.ox.ac.uk/pascal/VOC/voc2012/" FILENAME="VOCtrainval_11-May-2012.tar" #download_and_uncompress "${BASE_URL}" "${FILENAME}"
因为这是在线下载并解压,数据包有2个G大小,太慢了,所以屏蔽掉后我们手动下载来解压。
-
我把数据分享到了网盘,需要的可以下载。链接: https://pan.baidu.com/s/1iaGVUMY6
上一篇: 【C++】「一本通 1.2 例 3」曲线