Description
HI, I am trying to load caffe_weights .caffemodel file into keras. But getting some errors...
Converting model...
CREATING MODEL
Traceback (most recent call last):
File "caffe2keras.py", line 43, in
main(args)
File "caffe2keras.py", line 32, in main
model = convert.caffe_to_keras(args.load_path+'/'+args.prototxt, args.load_path+'/'+args.caffemodel, debug=args.debug)
File "/home/rajeev/nabila/keras/keras/caffe/convert.py", line 43, in caffe_to_keras
debug)
File "/home/rajeev/nabila/keras/keras/caffe/convert.py", line 305, in create_model
raise RuntimeError('layer type', type_of_layer, 'used in this model is not currently supported')
RuntimeError: ('layer type', 'deconvolution', 'used in this model is not currently supported')
Is deconvulation layer is not supported till now??
Any help please.
Thanks in Advance.