TypechoJoeTheme

半醉残影

统计
搜索到 5 篇与 常见错误 的结果
2018-12-26

[常见错误]TensorFlow Serving grpg错误

[常见错误]TensorFlow Serving grpg错误
前言在进行部署TensorFlow Serving环境过程中,总是报错(如下错误信息),刚开始以为是服务器没有启动,后来才发现是代理问题<_Rendezvous of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "Socket closed" debug_error_string = "{"created":"@1545792723.752821509","description":"Error received from peer","file":"src/core/lib/surface/call.cc","file_line":1036,"grpc_message":"Socket closed","grpc_st...
那棵树看起来生气了
2018-12-26

常见错误

441 阅读
0 评论
2018年12月26日
441 阅读
0 评论
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

常见错误

575 阅读
0 评论
2018年12月21日
575 阅读
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

常见错误

607 阅读
0 评论
2018年12月19日
607 阅读
0 评论
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

深度学习,常见错误

493 阅读
0 评论
2018年09月21日
493 阅读
0 评论
2018-08-27

[常见错误]使用bazel 编译tensorflow serving时报错:fatal error: stropts.h: No such file or directory

[常见错误]使用bazel 编译tensorflow serving时报错:fatal error: stropts.h: No such file or directory
背景:公司一个model需要用到老版本的TensorFlow with MKLDNN。TensorFlow版本:1.4Bazel版本:0.5.4错误详情使用bazel 编译tensorflow serving时报错:fatal error: stropts.h: No such file or directory即:ERROR: /root/.cache/bazel/_bazel_root/9d2529a5716c088bd9c07f1c8e164988/external/curl/BUILD:28:1: C++ compilation of rule '@curl//:curl' failed: gcc failed: error executing command /usr/bin/gcc -U_FORTIFY_SOURCE -fstack-protector -Wall -B/usr/bin -B/usr/bin -Wunused-but-set-parameter -Wno-free-nonheap-object -fno-omit-frame-pointer -MD -...
那棵树看起来生气了
2018-08-27

常见错误

1,216 阅读
1 评论
2018年08月27日
1,216 阅读
1 评论