https://github.com/tensorflow/models/tree/master/tutorials/image/cifar10
ここのcifar10のコード動かす時にtensorflow0.12ではエラーをはいたので対処した。
TypeError: strided_slice() missing 1 required positional argument: 'strides'
cifar10_input.pyのstrided_slice()の引数が足りないので付け足してあげる。
cifar10_input.py
tf.strided_slice(record_bytes, [0], [label_bytes]), tf.int32)
を
cifar10_input.py
tf.strided_slice(record_bytes, [0], [label_bytes], [1]), tf.int32)
に変更
cifar10_input.py
tf.strided_slice(record_bytes, [label_bytes],
[label_bytes + image_bytes]),
[result.depth, result.height, result.width])
を
cifar10_input.py
tf.strided_slice(record_bytes, [0], [label_bytes], [1]), tf.int32)
に変更
contrib.deprecatedなんとかが軒並みエラーを吐いているので
全てcontrib.deprecatedを消してあげる
例えば
tf.contrib.deprecated.histogram_summary~
を
tf.histogram_summaryなど