我正在尝试为我的问题微调完全卷积网。我收到以下警告。 为什么我收到此警告?
[libprotobuf WARNING google/protobuf/io/coded_stream.cc:505] Reading dangerously
large protocol message. If the message turns out to be larger than 2147483647 bytes,
parsing will be halted for security reasons. To increase the limit (or to disable
these warnings), see CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.
答案 0 :(得分:3)
2147483647是您可以在C ++中以整数数据类型存储的最大值。
Caffe将.prototxt文件读入缓冲区,然后从缓冲区中读取参数。此缓冲区在内部定义为最大大小为2147483647字节。因此,如果.prototxt文件太大,它可能不适合此缓冲区。因此,Caffe发出此警告以增加限制。