Deep Learning With Keras 简明教程 Setting up Project Deep Learning With Keras 简明教程 Deep Learning with Keras - Setting up Project 有了这个背景,我们现在开始创建项目。 Setting Up Project 我们将通过 Anaconda 导航器,为项目使用 Jupyter 。由于我们的项目使用 TensorFlow 和 Keras,因此您需要在 Anaconda 设置中安装它们。要安装 Tensorflow,请在控制台窗口中运行以下命令: >conda install -c anaconda tensorflow 要安装 Keras,请使用以下命令 − >conda install -c anaconda keras 您现在可以开始 Jupyter 了。 Starting Jupyter 启动 Anaconda 导航器时,您会看到以下打开屏幕。 单击 ‘Jupyter’ 以启动它。屏幕将显示您硬盘驱动器上现有的项目(如果存在)。 Starting a New Project 通过选择以下菜单选项,在 Anaconda 中启动一个新的 Python 3 项目 − File | New Notebook | Python 3 菜单选择屏幕截图如下所示,供您快速参考 − 一个新的空白项目将显示在您的屏幕上,如下所示 − 通过单击并编辑默认名称 “UntitledXX” ,将项目名称更改为 DeepLearningDigitRecognition 。