2017-02-17 48 views
0

我有brainwash_mean.npy文件,這是一個沒有錯誤的正確文件。'數組形狀不正確。'從npy轉換爲binaryproto時出錯

我想轉換npy file to binaryproto和我有'Incorrect array shape.'錯誤。

我的代碼是

def convert_numpy_binaryproto(filename): 
    print filename; 
    avg_img = np.load(filename); 
    #avg_img is your numpy array with the average data 
    blob = caffe.io.array_to_blobproto(avg_img); 
    with open(mean.binaryproto, 'wb') as f : 
     f.write(blob.SerializeToString()) 


def main(argv): 
    convert_numpy_binaryproto(sys.argv[1]); 


if __name__ == "__main__": 
    main(sys.argv[1:]) 

出了什麼問題?

回答

0

以下代碼適用於我。

def convert_numpy_binaryproto(path): 
    print path; 
    avg_img = np.load(path); 
    #avg_img is your numpy array with the average data 
    blob = caffe.proto.caffe_pb2.BlobProto(); 
    blob.channels, blob.height, blob.width = avg_img.shape; 
    blob.data.extend(avg_img.astype(float).flat); 
    binaryproto_file = open('mean.binaryproto', 'wb'); 
    binaryproto_file.write(blob.SerializeToString()); 
    binaryproto_file.close();