为什么caffe模型保存为PCX图像?

时间:2017-11-07 03:20:38

标签: machine-learning neural-network deep-learning protocol-buffers caffe

我正在使用caffe修改Deep Learning

我将模型保存为

    string savemodelname = Conf.snapshot_prefix_folder+"/snapshotat_"+ss.str()+".caffemodel";                    
    caffe::NetParameter net_param;
    net_->ToProto(&net_param);
    caffe::WriteProtoToBinaryFile(net_param, savemodelname);

但它保存为PCX图像(image / vnd.zbrush.pcx)而不是二进制文件。

我的操作系统是Ubuntu16.04。

这有什么问题? 我使用c ++进行训练。

编辑:

如何保存模型可以在附图中看到。 enter image description here

0 个答案:

没有答案