我正在尝试查看可用的问题(),但它给出了错误。 你能不能让我知道我是否想念什么
>>> from tensor2tensor import problems
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\\Anaconda3\lib\site-packages\tensor2tensor\problems.py", line 22, in <module>
from tensor2tensor.utils import registry
File "C:\Users\\Anaconda3\lib\site-packages\tensor2tensor\utils\registry.py", line 551, in <module>
attacks = tf.contrib.framework.deprecated(None, "Use registry.attack")(attack)
AttributeError: module 'tensorflow' has no attribute 'contrib'
>>> tf.__version__
'2.0.0-beta1'
>>>
我正在Windows上工作
答案 0 :(得分:0)
Tensor2Tensor库is not yet compatible with Tensorflow 2.0,因为它仍然使用许多不推荐使用的API。当前唯一的选择是降级到较低版本,例如Tensorflow 1.15。
pip3 install tensorflow==1.15.0