Skip to content

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

License

Notifications You must be signed in to change notification settings

mkhoin/ainext_apr_2018

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%