‘Tensor‘ object has no attribute ‘numpy‘问题解决

问题:
tensorflow的版本问题,没开启eager_execution

解决:
import tensorflow as tf
后加
tf.enable_eager_execution()

!!!!一定要 new console后才好使!!!!!

参考文章:添加链接描述

你可能感兴趣的:(python)