您的位置:首页技术文章
文章详情页

python - keras安装

【字号: 日期:2022-08-07 14:23:53浏览:35作者:猪猪

问题描述

keras安装好了,tensorflow也安装好了但运行的时候出现这个问题,有人以前遇到过吗?能帮忙解决一下吗?谢谢了python - keras安装

问题解答

回答1:

这个是keras的问题,修改keras/backend/tensorflow_backend.py

try: import tf.contrib.ctc as tfctcexcept ImportError: import tf.core.util.ctc as tfctc

改为

try: import tf.contrib.ctc as tfctcexcept ImportError: import tf.core.util.ctc as tfctcfinally: tf.ctc = tfctc del tfctc

via https://github.com/fchollet/k...

回答2:

请用ananconda

标签: Python 编程
相关文章: