问题原因在于在tf2下调用了tf1的API,而tf2中是没有placeholder的。
解决方法:
使用:
import tensorflow.compat.v1 as tftf.disable_v2_behavior()
替换:
import tensorflow as tf