Sancho McCann
Results
2
comments of
Sancho McCann
I found the same thing with my models. The problem was that I hadn't converted my input data into TensorFlow's HxWxC layout/ordering. (Caffe's is CxHxW.)
@shresthamalik I think that's correct. We need to change our input shape/layout to match the expectation of the framework. Caffe expected [CxHxW](http://caffe.berkeleyvision.org/tutorial/net_layer_blob.html). Tensorflow expects [HxWxC]. Here's how I changed my...