报错:AttributeError: module 'tensorflow.contrib.data' has no attribute 'TFRecordDataset'
在TensorFlow 1.3中,Dataset API是放在contrib包中的:
tf.contrib.data.Dataset
而在TensorFlow 1.4中,Dataset API已经从contrib包中移除,变成了核心API的一员:
tf.data.Dataset
报错:AttributeError: module 'tensorflow.contrib.data' has no attribute 'TFRecordDataset'
在TensorFlow 1.3中,Dataset API是放在contrib包中的:
tf.contrib.data.Dataset
而在TensorFlow 1.4中,Dataset API已经从contrib包中移除,变成了核心API的一员:
tf.data.Dataset