TianNing,Kong

Results 16 comments of TianNing,Kong

这个工程比较困难的地方就是boost的安装,其他的都还好,尝试了python3环境下运行,安装boost的时候,编译之前给了参数 --with-python=/dir/../python3, 结果没有运行成功,在导入import Augment这句报错,无法导入动态module,缺少函数......如果作者有精力请推出python3版本,感激不尽

@Canjie-Luo @keeofkoo 问题卡在编译的地方了,我想应该是调用cmake命令这句话, 我没学过相关的知识,转行做深度学习,没碰过C语言相关的东西,所以... 从编译时返回的日志看,编译过程自动修改为python2.7的bosst支持,我的确也装了python3的boost支持包 一下是日志 cmake -D CUDA_USE_STATIC_CUDA_RUNTIME=OFF .. -- The C compiler identification is GNU 4.8.5 -- The CXX compiler identification is GNU 5.4.0 -- Check for working...

到后面执行make命令,都是用python2完成的,即使boost用python3安装的也不行, 应该是需要修改编译调用的程序 make Scanning dependencies of target Augment [ 12%] Building CXX object CMakeFiles/Augment.dir/src/imgwarp_piecewiseaffine.cpp.o [ 25%] Building CXX object CMakeFiles/Augment.dir/src/imgwarp_mls_rigid.cpp.o [ 37%] Building CXX object CMakeFiles/Augment.dir/src/delaunay.cpp.o [ 50%] Building CXX...

经过反复尝试,google搜索修改方案 我对文件CMakeList.txt 做了一点修改 在文件的最顶端加了一句, 这是我安装boost的路径 set(BOOST_ROOT $(BOOST_ROOT) "/home/kongtianning/myboost") 返回结果稍微改变 -- The C compiler identification is GNU 4.8.5 -- The CXX compiler identification is GNU 4.8.5 -- Check for working C...

@Canjie-Luo 问题最终得到的解决, 这个工具在ubuntu上安装容易因为可以使用apt安装,但是在Centos上安装就要碰到这个lib找不到,或者版本不对的问题,注意更新cmake的版本 yum install gtk+-devel gimp-devel gimp-devel-tools gimp-help-browser zlib-devel libtiff-devel libjpeg-devel libpng-devel gstreamer-devel libavc1394-devel libraw1394-devel libdc1394-devel jasper-devel jasper-utils swig python libtool nasm 装boost的时候不要指定自己安装的python路径,否则会出现各种问题,使用系统自带的python2.7就可以,在安装boost的时候会少走很多弯路,不会报lib找不到的问题. Centos下安装opencv2.14.x也会遇到各种障碍,认真阅读opencv官网的安装说明, 找不到的lib可以有替代的lib安装 另外安装opencv2的时候, cd opencv-xx.xx.xx mkir...

最终希望有懂cmake的人 把这个工具改成纯python的,不然不论使用还是安装都各种麻烦

路径下libaster_db2cf029.so这个文件是存在的,是不是tensorflow版本问题导致的,我用的不是tf1.4

如果不用tf1.4,应该怎么修改,这个加载load_op_library是否是需要的

Thanks @luo3300612 , I met the same OOM problem, which happened in the same node "...rnn/att_mechanism/MatMul/...", i solved it by your advice. modified method _procedd_instance in model/utils/data_generator.py: ..... img =...

> Anyone solved bbox and nms-gpu in win10? I solve this soft-nms problem, I wirte a new function(pure python) replace the orign one. 我写了一个一个python 程序替代了原来的soft_nms this function is a little...