├── .gitignore ├── Dockerfile ├── Dockerfile-gpu ├── LICENSE ├── README.md ├── installation ├── README.md ├── docker-stack-scripts │ ├── Jupyter-docker-stacks-license.md │ ├── jupyter_notebook_config.py │ ├── start-notebook.sh │ ├── start-singleuser.sh │ └── start.sh ├── let_jovyan_write.sh ├── miscellaneous_notes.md ├── step_by_step_GCP_install.md ├── step_by_step_MacOSX_install.md └── windows_TF_GPU.md └── notebooks ├── alexnet_in_keras.ipynb ├── bidirectional_lstm.ipynb ├── cartpole.ipynb ├── convolutional_sentiment_classifier.ipynb ├── creating_word_vectors_with_word2vec.ipynb ├── cross_entropy_cost.ipynb ├── deep_net_in_keras.ipynb ├── deep_net_in_tensorflow.ipynb ├── dense_sentiment_classifier.ipynb ├── first_tensorflow_graphs.ipynb ├── first_tensorflow_neurons.ipynb ├── generative_adversarial_network.ipynb ├── gru_in_keras.ipynb ├── intermediate_net_in_keras.ipynb ├── intermediate_net_in_tensorflow.ipynb ├── intro_to_tensorflow_times_a_million.ipynb ├── lenet_in_tensorflow.ipynb ├── lenet_net_in_keras.ipynb ├── multi_convnet_architectures.ipynb ├── natural_language_preprocessing_best_practices.ipynb ├── point_by_point_intro_to_tensorflow.ipynb ├── rnn_in_keras.ipynb ├── shallow_net_in_keras.ipynb ├── sigmoid_function.ipynb ├── softmax.ipynb ├── stacked_bidirectional_lstm.ipynb ├── tensor-fied_intro_to_tensorflow.ipynb ├── test.ipynb ├── vanilla_lstm_in_keras.ipynb ├── vggnet_in_keras.ipynb └── ye_olde_conv_lstm_stackeroo.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/Dockerfile-gpu -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/README.md -------------------------------------------------------------------------------- /installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/README.md -------------------------------------------------------------------------------- /installation/docker-stack-scripts/Jupyter-docker-stacks-license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/docker-stack-scripts/Jupyter-docker-stacks-license.md -------------------------------------------------------------------------------- /installation/docker-stack-scripts/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/docker-stack-scripts/jupyter_notebook_config.py -------------------------------------------------------------------------------- /installation/docker-stack-scripts/start-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/docker-stack-scripts/start-notebook.sh -------------------------------------------------------------------------------- /installation/docker-stack-scripts/start-singleuser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/docker-stack-scripts/start-singleuser.sh -------------------------------------------------------------------------------- /installation/docker-stack-scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/docker-stack-scripts/start.sh -------------------------------------------------------------------------------- /installation/let_jovyan_write.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/let_jovyan_write.sh -------------------------------------------------------------------------------- /installation/miscellaneous_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/miscellaneous_notes.md -------------------------------------------------------------------------------- /installation/step_by_step_GCP_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/step_by_step_GCP_install.md -------------------------------------------------------------------------------- /installation/step_by_step_MacOSX_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/step_by_step_MacOSX_install.md -------------------------------------------------------------------------------- /installation/windows_TF_GPU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/installation/windows_TF_GPU.md -------------------------------------------------------------------------------- /notebooks/alexnet_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/alexnet_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/bidirectional_lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/bidirectional_lstm.ipynb -------------------------------------------------------------------------------- /notebooks/cartpole.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/cartpole.ipynb -------------------------------------------------------------------------------- /notebooks/convolutional_sentiment_classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/convolutional_sentiment_classifier.ipynb -------------------------------------------------------------------------------- /notebooks/creating_word_vectors_with_word2vec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/creating_word_vectors_with_word2vec.ipynb -------------------------------------------------------------------------------- /notebooks/cross_entropy_cost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/cross_entropy_cost.ipynb -------------------------------------------------------------------------------- /notebooks/deep_net_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/deep_net_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/deep_net_in_tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/deep_net_in_tensorflow.ipynb -------------------------------------------------------------------------------- /notebooks/dense_sentiment_classifier.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/dense_sentiment_classifier.ipynb -------------------------------------------------------------------------------- /notebooks/first_tensorflow_graphs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/first_tensorflow_graphs.ipynb -------------------------------------------------------------------------------- /notebooks/first_tensorflow_neurons.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/first_tensorflow_neurons.ipynb -------------------------------------------------------------------------------- /notebooks/generative_adversarial_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/generative_adversarial_network.ipynb -------------------------------------------------------------------------------- /notebooks/gru_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/gru_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/intermediate_net_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/intermediate_net_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/intermediate_net_in_tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/intermediate_net_in_tensorflow.ipynb -------------------------------------------------------------------------------- /notebooks/intro_to_tensorflow_times_a_million.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/intro_to_tensorflow_times_a_million.ipynb -------------------------------------------------------------------------------- /notebooks/lenet_in_tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/lenet_in_tensorflow.ipynb -------------------------------------------------------------------------------- /notebooks/lenet_net_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/lenet_net_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/multi_convnet_architectures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/multi_convnet_architectures.ipynb -------------------------------------------------------------------------------- /notebooks/natural_language_preprocessing_best_practices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/natural_language_preprocessing_best_practices.ipynb -------------------------------------------------------------------------------- /notebooks/point_by_point_intro_to_tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/point_by_point_intro_to_tensorflow.ipynb -------------------------------------------------------------------------------- /notebooks/rnn_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/rnn_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/shallow_net_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/shallow_net_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/sigmoid_function.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/sigmoid_function.ipynb -------------------------------------------------------------------------------- /notebooks/softmax.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/softmax.ipynb -------------------------------------------------------------------------------- /notebooks/stacked_bidirectional_lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/stacked_bidirectional_lstm.ipynb -------------------------------------------------------------------------------- /notebooks/tensor-fied_intro_to_tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/tensor-fied_intro_to_tensorflow.ipynb -------------------------------------------------------------------------------- /notebooks/test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/test.ipynb -------------------------------------------------------------------------------- /notebooks/vanilla_lstm_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/vanilla_lstm_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/vggnet_in_keras.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/vggnet_in_keras.ipynb -------------------------------------------------------------------------------- /notebooks/ye_olde_conv_lstm_stackeroo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-deep-learners/nyc-ds-academy/HEAD/notebooks/ye_olde_conv_lstm_stackeroo.ipynb --------------------------------------------------------------------------------