tensorflow.python.framework.errors_impl.AlreadyExistsError: Another metric with the same name alread

我在pycharm上想做一个端到端的CNN网络的时候,运行的时候发生了错误,他告诉我已经存在了相同的名字,错误提示:tensorflow.python.framework.errors_impl.AlreadyExistsError: Another metric with the same name already exists.

截图如下
tensorflow.python.framework.errors_impl.AlreadyExistsError: Another metric with the same name alread_第1张图片

图2

第一步 尝试纠正错误,这可能是tensorflow.python.keras和keras的兼容性问题,于是我们在导入包的地方修改一下

图3

第一步纠错结果

图4
在这里插入图片描述
很好,又出现了一个错误,下面进入第二步,解决刚出现的错误

第二步解答,我怀疑是因为在我写的另一个python文件也导入了keras,修改一下,最后运行也出现了错误,于是我把keras卸载,换成和tensorflow相匹配的版本。

在这里插入图片描述

第二步纠错结果,下面错误的出现是因为keras和tensorflow的版本不匹配,有的网友解答由于下载tensorflow之后会自动的下载keras,于是两者版本匹配,但是我在调试的时候,改动了我的tensorflow版本,导致两者不匹配,于是出现了一系列的错误,并出现了一下的错误提示:AttributeError: module ‘keras.utils’ has no attribute ‘Sequence’

tensorflow.python.framework.errors_impl.AlreadyExistsError: Another metric with the same name alread_第2张图片

第三步纠错,笑死,我也不知道最后咋解决的,改成下面这个语句突然间就好了

在这里插入图片描述

所以说版本匹配很重要,双方看不上眼最终只能导致不断地Bug。

你可能感兴趣的:(tensorflow,python,深度学习)