jupyter notebook运行kera神经网络服务器挂掉重启解决办法

把版本1.9.0的tensorflow直接换成pip install tensorflow的最新版2.6
然后在导入的过程中可能会出现导入plot_model失败,只需要换成下面的代码即可:

"ImportError: cannot import name 'plot_model' from 'keras.utils' (/usr/local/lib/python3.7/dist-packages/keras/utils/__init__.py)"
from keras.utils.vis_utils import plot_model

https://stackoverflow.com/questions/67703817/cant-import-plot-model-from-keras-utils

你可能感兴趣的:(神经网络,jupyter,tensorflow)