caffe-tensorflow
caffe-tensorflow copied to clipboard
Caffe models in TensorFlow
I am giving deploy_vgg.prototxt as input and followed the instructions given in [this site](https://ndres.me/post/convert-caffe-to-tensorflow/) but I get this error: **Error encountered: Cannot determine dimensions of data layer. See comments in...
``` Traceback (most recent call last): File "./convert.py", line 60, in main() File "./convert.py", line 56, in main args.phase) File "./convert.py", line 27, in convert transformer = TensorFlowTransformer(def_path, caffemodel_path, phase=phase)...
I tried to convert a caffe model, but I got an error. I tried convert the provided example, and I got the same error below. Python 3.7.4 caffe 1.0.0 tensorflow...
I am trying to convert a caffee model to tf and run into following error. Traceback (most recent call last): File "convert.py", line 68, in main() File "convert.py", line 64,...
I keep getting this error message given below TypeError: expected bytes, str found Using python 3.5
Tested with the SeqFace model from here: https://github.com/huangyangyu/SeqFace. Accuracy on the tested Dataset is unchanged when using the TF model
I am trying to convert googlenet pretrained on places365 dataset and getting the following error. ` ---------------------------------------------------------- WARNING: PyCaffe not found! Falling back to a pure protocol buffer implementation. *...
Have tried with python 2 and 3, but keep getting 'multiple top nodes are not supported' then when i remove the top: label from the prototxt it says Layer not...
See https://github.com/ethereon/caffe-tensorflow/issues/53 This PR is motivated by comments: 1. https://github.com/ethereon/caffe-tensorflow/issues/53#issuecomment-252110406 2. https://github.com/ethereon/caffe-tensorflow/issues/53#issuecomment-278786863 3. https://github.com/ethereon/caffe-tensorflow/issues/53#issuecomment-284969768
I had an issue loading a model's weights after converting with some error about dtype being object in numpy.load with allow_pickle=False, which must be some sort of environment issue I...