使用时
image = tf.cast(image, tf.string)
label = tf.cast(label, tf.int32)
# make a input queue
input_queue = tf.train.slice_input_producer([image, label])
在我的VSCode中,弹出以下错误:
模块'tensorflow_core._api.v2.train'没有属性 'slice_input_producer'TF版本2.0
您认为唯一的可能是降级TF版本吗?
答案 0 :(得分:0)
您可以尝试使用tf.compat.v1.train.slice_input_producer
吗?