/ainext_apr_2018

Introduction to Deep Learning with Keras, AI Next conference, Santa Clara, April 10, 2018

Primary LanguageJupyter NotebookMIT LicenseMIT


AI Next Keras training

Sunnyvale, April 10th 2018

Get started guide

Download and Install Miniconda Python 3.6

https://conda.io/miniconda.html

Open a terminal and change dir to this folder

cd ainext_apr_2018

Create the environment

conda env create

wait for the environment to be created.

Activate the environment (Mac/Linux)

source activate ainext

Activate the environment (Windows)

activate ainext

Check that your prompt changed to

(ainext) $

Launch Jupyter Notebook

jupyter notebook

Open your browser to

http://localhost:8888

The notebooks are in the labs folder

Troubleshooting installation

If for some reason you don't see Houston we are go!, the simplest solution is to delete the environment and start from scratch again.

To remove the environment:

  • close the browser and go back to your terminal
  • stop jupyter notebook (CTRL-C)
  • deactivate the environment (Mac/Linux):
source deactivate
  • deactivate the environment (Windows 10):
deactivate ainext
  • delete the environment:
conda remove -y -n ainext --all
  • restart from environment creation and make sure that each steps completes till the end.

Updating Conda

One thing you can also try is to update your conda executable. This may help if you already had Anaconda installed on your system.

conda update conda