尝试安装TensorFlow数据集时收到意外错误消息。我有TensorFlow 2.0,还启用了渴望执行功能。
这是错误消息:
AttributeError Traceback (most recent call last)
<ipython-input-32-66fff9018d39> in <module>()
----> 1 import tensorflow_datasets
7 frames
/usr/local/lib/python3.6/dist-packages/tensorflow/python/util/deprecation_wrapper.py in __getattr__(self, name)
104 attr = getattr(self._dw_wrapped_module, name)
105 if (self._dw_warning_count < _PER_MODULE_WARNING_LIMIT and
--> 106 name not in self._dw_deprecated_printed):
107 if self._dw_module_name:
108 full_name = 'tf.%s.%s' % (self._dw_module_name, name)
AttributeError: module 'tensorflow._api.v1.autograph.experimental' has no attribute 'do_not_convert'
有什么办法解决吗?
答案 0 :(得分:0)
请检查您的Python和TF版本,因为在使用 Python> = 3.6.7 , Tensorflow == 2.0 和 Tensorflow_datasets == 1.2时可以正常工作.0
尝试使用以上这些版本。