TypechoJoeTheme

半醉残影

统计
搜索到 16 篇与 深度学习 的结果
2018-12-21

[常见错误] Caffe编译报错undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8'

[常见错误] Caffe编译报错undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8'
前言在编译caffe过程中一直出现错误undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8',找了很久没找到错误,最终通过升级编译器解决了。解决方法升级编译器$ yum install centos-release-scl -y $ yum install devtoolset-3-toolchain -y $ scl enable devtoolset-3 bash $ gcc --version 重新编译,搞定!参考:https://blog.csdn.net/lanwilliam/article/details/77893033
那棵树看起来生气了
2018-12-21

常见错误

619 阅读
0 评论
2018年12月21日
619 阅读
0 评论
2018-12-19

[常见错误]TensorFlow模型量化protobuf大小限制

[常见错误]TensorFlow模型量化protobuf大小限制
前言在做TensorFlow模型量化过程中,会用到transform_graph,然后在进行模型压缩时候因为自己的模型有1.7GB,所以程序报错。[libprotobuf ERROR external/protobuf_archive/src/google/protobuf/io/coded_stream.cc:190] A protocol message was rejected because it was too big (more than 1073741824 bytes). To increase the limit (or to disable these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.解决办法修改代码$ vim tensorflow/core/platform/env.cc 找到coded_stream.SetTotalBytesLimit(1024LL << 20, 512LL << ...
那棵树看起来生气了
2018-12-19

常见错误

632 阅读
0 评论
2018年12月19日
632 阅读
0 评论
2018-09-29

TensorFlow模型Graph修改插入节点

TensorFlow模型Graph修改插入节点
背景在优化一个深度学习模型的时候,客户给的模型为已经冻结过得pb文件,而这个pb文件没有input(Placeholder)节点,把特定的数据输入这个模型无法做到,而且对于测试性能和数据的准确性非常不便。然后我就想,用什么办法可以修改已经训练好模型的结构呢?最后找到一种方法,修改计算图结构。
那棵树看起来生气了
2018-09-29

TensorFlow,深度学习

2,498 阅读
5 评论
2018年09月29日
2,498 阅读
5 评论
2018-09-21

[常见错误] caffe跑resnet50 imagenet数据集错误height <= datum_height

[常见错误] caffe跑resnet50 imagenet数据集错误height <= datum_height
height <= datum_height原因下载了imagenet数据集后,使用数据集中验证集验证resnet50准确率出现如下错误:height <= datum_height(224 vs 170)出现这个问题的原因是验证图片数据集(LMDB)的图片的size小于需要裁剪的尺寸。
那棵树看起来生气了
2018-09-21

深度学习,常见错误

525 阅读
0 评论
2018年09月21日
525 阅读
0 评论