踩坑前代码:

label, features = sess.run([label, features])

变量重定义了,修改后:

_label, _features = sess.run([label, features])

解决问题。