AttributeError: module ‘tensorflow‘ has no attribute ‘placeholder‘
当你出现这个问题时,说明在tf2下使用了tf1的API。1.参看版本号是否使用错误在pycharm下,找到工程,然后输出下面命令参看版本import tensorflow as tf #载入tensorflow环境print(tf.__version__) #查看tensorflow版本会打印tensorflow版本,应该是2.0的版本。2.把代码进入tf环境中下面的代码替换import tensorflow as tf替换为:import tensorflow.compat
原创
2022-02-27 16:41:22 ·
828 阅读 ·
0 评论