报错:ImportError: cannot import name ‘get_config‘ from ‘tensorflow.python.eager.context‘
2022/1/11 14:03:54
本文主要是介绍报错:ImportError: cannot import name ‘get_config‘ from ‘tensorflow.python.eager.context‘,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
报错:ImportError: cannot import name ‘get_config’ from ‘tensorflow.python.eager.context’
尝试在Anaconda Prompt中切换 Keras 2.3.1到这个版本
pip install keras==2.3.1
然后再安装这个
pip install git+https://www.github.com/keras-team/keras-contrib.git
上面这个命令如果执行响应时间过长,可采取如下操作:
# 设置http代理,git clone克隆仓库 git clone https://www.github.com/keras-team/keras-contrib.git # 然后进入keras-contrib 工作目录 cd keras-contrib # 最后进行编译安装 python setup.py build python setup.py install
这篇关于报错:ImportError: cannot import name ‘get_config‘ from ‘tensorflow.python.eager.context‘的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-30tensorflow是什么-icode9专业技术文章分享
- 2024-10-15成功地使用本地的 NVIDIA GPU 运行 PyTorch 或 TensorFlow
- 2024-01-23供应链投毒预警 | 恶意Py包仿冒tensorflow AI框架实施后门投毒攻击
- 2024-01-19attributeerror: module 'tensorflow' has no attribute 'placeholder'
- 2024-01-19module 'tensorflow.compat.v2' has no attribute 'internal'
- 2023-07-17【2023年】第33天 Neural Networks and Deep Learning with TensorFlow
- 2023-07-10【2023年】第32天 Boosted Trees with TensorFlow 2.0(随机森林)
- 2023-07-09【2023年】第31天 Logistic Regression with TensorFlow 2.0(用TensorFlow进行逻辑回归)
- 2023-07-01【2023年】第30天 Supervised Learning with TensorFlow 2(用TensorFlow进行监督学习 2)
- 2023-06-18【2023年】第29天 Supervised Learning with TensorFlow 1(用TensorFlow进行监督学习 1)