【发布时间】:2021-01-18 04:58:48
【问题描述】:
我是 Ml(猫狗检测)的新手。我无法在 Jupyter Notebook 中使用 Keras 库。
我尝试通过以下方式在 jupyter 笔记本中安装 Tensorflow:
import tensorflow as tf
我不知道这是否是调用 Keras 的正确方式,但在第二个单元格中我尝试了:
from keras.models import Sequential
错误:
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-10-9c5e0a19b646> in <module>
----> 1 from keras.models import Sequential
ModuleNotFoundError: No module named 'keras'
Keras 绝对不是 TensorFlow 库中的模块???
【问题讨论】:
标签: python tensorflow machine-learning keras jupyter-notebook