报错处理
L0_L0
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
version `GLIBCXX_3.4.30‘ not found
conda环境安装中的报错原创 2023-03-11 22:16:02 · 7028 阅读 · 2 评论 -
AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘
关于TensorFlow 2.0以上版本使用TensorFlow 1.x,出现属性不存在问题等:举个栗子:报错:AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’# 报错代码内容:x = tf.placeholder()解决方法:改成如下两行tf.compat.v1.disable_eager_execution() # tensorflow2.0以上版本必须加这样一句x = tf.compat.v1.pla原创 2022-03-02 11:09:05 · 206 阅读 · 0 评论
分享