gpt4 book ai didi

python - 如何将 .npy 文件转换为 .binaryproto?

转载 作者:行者123 更新时间:2023-11-30 02:27:38 33 4
gpt4 key购买 nike

我使用 python 创建了一个平均图像文件并将其保存到 numpy 文件中。我想知道如何将此 .npy 文件转换为 .binaryproto 文件。我正在使用此文件使用 GoogLeNet 进行训练。

最佳答案

您可以简单地使用 numpy 来创建 .binaryproto 和给定的 caffe io 函数

import caffe
#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())

关于python - 如何将 .npy 文件转换为 .binaryproto?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41503404/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com