Skip to content

Instantly share code, notes, and snippets.

@craftzdog
Created September 2, 2015 11:15
Show Gist options
  • Save craftzdog/da6046263d8011f0d358 to your computer and use it in GitHub Desktop.
Save craftzdog/da6046263d8011f0d358 to your computer and use it in GitHub Desktop.
import caffe
import numpy as np
import sys
if len(sys.argv) != 3:
print "Usage: python convert_protomean.py proto.mean out.npy"
sys.exit()
blob = caffe.proto.caffe_pb2.BlobProto()
data = open( sys.argv[1] , 'rb' ).read()
blob.ParseFromString(data)
arr = np.array( caffe.io.blobproto_to_array(blob) )
out = arr[0]
np.save( sys.argv[2] , out )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment