【报错记录】import keras时出现AlreadyExistsError: Another metric with the same name already exists.

AlreadyExistsError: Another metric with the same name already exists.
AlreadyExistError:已存在另一个同名度量

keras版本与tensorflow版本不对应导致

  • 查看conda 中所有包版本
conda list
  • 发现keras为2.7.0版本
  • 卸载keras
pip uninstall keras
  • 重装kreas
pip install keras==2.6.0

报错:ImportError: cannot import name ‘version’ from ‘keras’ (unknown location)

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