刚开始学习Tensorflow,决定把遇到的Bug都记录一下,以后遇到的时候可以有所借鉴~
1、TypeError: Can not convert a function into a Tensor or Operation.
类型错误:无法将函数转为向量或者操作
错误原因:变量初始化的时候忘记加括号
sess.run(tf.global_variables_initializer()) #注意一定要加括号
刚开始学习Tensorflow,决定把遇到的Bug都记录一下,以后遇到的时候可以有所借鉴~
1、TypeError: Can not convert a function into a Tensor or Operation.
类型错误:无法将函数转为向量或者操作
错误原因:变量初始化的时候忘记加括号
sess.run(tf.global_variables_initializer()) #注意一定要加括号