ImportError: cannot import name dense_features from tensorflow.python.feature_column

ImportError: cannot import name ‘dense_features’ from ‘tensorflow.python.feature_column’

在下载mnist数据集的时候出现这个问题,后来发现使用以下方法便可以解决:

  • pip3 uninstall tensorflow_estimator
  • pip3 install tensorflow_estimator

注:最好在tensorflow_estimator后边加入你对应的tensorflow版本,不然他会安装最新版本的estimator,如:pip3 install tensorflow_estimator==1.14.0rc0(我安装的tensorflow便是1.14.0gpu版本),希望能帮到你,

你可能感兴趣的:(Python那些事)