Open AirAI opened 7 years ago
I am. But there is a little problem when executing caffe-tensorflow in tensorflow v1.2.0
@MU001999 Thx. I have successfully executed caffe-tensorflow in tensorflow v1.2.0. What is your problem?
@AirAI When I run classify.py, many problems, for example the tf.pack is not in 1.2.0, have you solved them ? And do you know the version of the tensorflow of caffe-tensorflow ?
@MU001999 The default version of tensorflow is v0.8.0. If you want to execture it in tensorflow v1.2.0,please do the following changes.
example/imagenet/dataset.py tf.pack() -> tf.stack() tf.image.resize_images(img, new_shape[0], new_shape[2]) -> rf.image.resize_images(img,new_shape) tf.reverse(img,[False,False,True]) -> tf.reverse(img,[2])
kaffe/tensorfow/network.py tf.concat(concat_dim=axis, values=inputs, name=name) -> tf.concat(axis=axis, values=inputs, name=name)
@AirAI Thx so much!
Is there anybody executing caffe-tensorflow in tensorflow v1.2.0. Thx.