代码地址:https://github.com/endernewton/iter-reason
论文:Iterative Visual Reasoning Beyond Convolutions
注意:作者公布的源码里面没有全局推理模块这个有点坑。所以我只是在我的环境下把代码调通了然后并没有继续训练下去。
环境:python3.5+tensorflow1.10+cuda9.0
遇到的问题:gzip: stdin has more than one entry--rest ignored tar: Child returned status 2 tar: Error is not recoverable: exiting now 原因: 解决方法:改用unzip 文件 -d 存储路径
遇到的问题:undefined symbol: _Py_ZeroStruct
原因:我电脑里装了python2.7和python3.5,但我的tenmsorflow是装在了python3.5下,make的时候用的是python
解决方法:
修该Makefile,将python改成python3
遇到的问题:
NameError:name ‘xrange’ is not defined
原因:
在Python 3中,range()与xrange()合并为range( )。
我的python版本为python3.5。
解决办法:
将xrange( )函数全部换为range( )。
遇到的问题:
TypeError: ‘range’ object does not support item assignment
解决方法:
/lib/utils/visualization.py", line 79,line103,line135.line168
改成list_gt = list(range(num_boxes))