Tensorflow 1.15 出现 Cannot find reference 'contrib' in 'init.py'
当我们使用如下代码时
python
from tensorflow.contrib.tensorboard.plugins import projector
会出现 Cannot find reference 'contrib' in 'init.py' 是因为后续的tensorflow移除这些模块,可以安装 tensorflow_core
python
pip install tensorflow_core
另外还有一些没有的可以在tensorflow_addons,tensorflow_estimator中找到,都可以使用pip安装
python
pip install tensorflow_addons
pip install tensorflow_estimator