bryantravissmith / aind2-cnn

AIND Term 2 -- Lesson on Convolutional Neural Networks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aind2-cnn

Instructions

  1. Clone the repository and navigate to the downloaded folder.

    	git clone https://github.com/udacity/aind2-cnn.git
    	cd aind2-cnn
    
  2. Install the necessary Python packages. If you are using a Mac, you need to pick only one of the two options below.

    For Mac/OSX (Option 1):

    	pip3 install -r requirements/requirements.txt
    	KERAS_BACKEND=tensorflow python -c "from keras import backend"
    

    For Mac/OSX (Option 2):

    	conda env create -f requirements/aind-dog-mac.yml
    	source activate aind-dog
    	KERAS_BACKEND=tensorflow python -c "from keras import backend"
    

    For Windows:

    	conda env create -f requirements/aind-dog-windows.yml
    	activate aind-dog
    	set KERAS_BACKEND=tensorflow 
    	python -c "from keras import backend"
    
  3. Enjoy!

About

AIND Term 2 -- Lesson on Convolutional Neural Networks


Languages

Language:Jupyter Notebook 100.0%