I try to run cifar10_train.py according to the tutorials, but I got
"cifar10_input.py", line 87, in read_cifar10 tf.strided_slice(record_bytes, [0], [label_bytes]), tf.int32) TypeError: strided_slice() missing 1 required positional argument: 'strides'
The document states that strides is optional, and it worked correctly on Ubuntu before.
My tensorflow version is 0.12.0rc1-cp35-cp35m-win_amd64. I have already installed the latest version.
Can I pass this argument? I have no idea about this ...
UPDATE: I replaced strided_slice with a slice, and it works. According to release # 754, strides will be optional in version 1.0. (May be?)
source share