tensorflow-resnet
tensorflow-resnet copied to clipboard
cannot load .ckpt file
I have been trying to run your forward.py code. But I get the following error message
W tensorflow/core/framework/op_kernel.cc:975] Not found: Unsuccessful TensorSliceReader constructor: Failed to find any matching files for ResNet-L50.ckpt in
"forward.py", line 11, in <module> new_saver.restore(sess, checkpoint_fn(layers))
How can I solve this issue? I am using tensorflow .10 with python 2.7
Do you have this checkpoint file?
its fixed. I had to use './ResNet-L%d.ckpt' instead of 'ResNet-L%d.ckpt' in meta_fn(layers): function.
This is https://github.com/tensorflow/tensorflow/issues/6893.