Tensorflow_core._api.v2.train没有属性'slice_input_producer'

时间:2019-12-06 15:10:02

标签: python tensorflow

使用时

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版本吗?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用tf.compat.v1.train.slice_input_producer吗?