gitextract_jrkn61cu/ ├── .gitignore ├── 01_the_machine_learning_landscape.ipynb ├── 02_end_to_end_machine_learning_project.ipynb ├── 03_classification.ipynb ├── 04_training_linear_models.ipynb ├── 05_support_vector_machines.ipynb ├── 06_decision_trees.ipynb ├── 07_ensemble_learning_and_random_forests.ipynb ├── 08_dimensionality_reduction.ipynb ├── 09_up_and_running_with_tensorflow.ipynb ├── 10_introduction_to_artificial_neural_networks.ipynb ├── 11_deep_learning.ipynb ├── 12_distributed_tensorflow.ipynb ├── 13_convolutional_neural_networks.ipynb ├── 14_recurrent_neural_networks.ipynb ├── 15_autoencoders.ipynb ├── 16_reinforcement_learning.ipynb ├── INSTALL.md ├── LICENSE ├── README.md ├── apt.txt ├── book_equations.ipynb ├── datasets/ │ ├── housing/ │ │ ├── README.md │ │ ├── housing.csv │ │ └── housing.tgz │ ├── inception/ │ │ └── imagenet_class_names.txt │ └── lifesat/ │ ├── README.md │ ├── gdp_per_capita.csv │ └── oecd_bli_2015.csv ├── docker/ │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── bashrc.bash │ ├── bin/ │ │ ├── nbclean_checkpoints │ │ ├── nbdiff_checkpoint │ │ ├── rm_empty_subdirs │ │ └── tensorboard │ ├── docker-compose.yml │ └── jupyter_notebook_config.py ├── environment.yml ├── extra_autodiff.ipynb ├── extra_capsnets-cn.ipynb ├── extra_capsnets.ipynb ├── extra_gradient_descent_comparison.ipynb ├── extra_tensorflow_reproducibility.ipynb ├── future_encoders.py ├── images/ │ ├── ann/ │ │ └── README │ ├── autoencoders/ │ │ └── README │ ├── classification/ │ │ └── README │ ├── cnn/ │ │ └── README │ ├── decision_trees/ │ │ └── README │ ├── deep/ │ │ └── README │ ├── distributed/ │ │ └── README │ ├── end_to_end_project/ │ │ └── README │ ├── ensembles/ │ │ └── README │ ├── fundamentals/ │ │ └── README │ ├── rl/ │ │ └── README │ ├── rnn/ │ │ └── README │ ├── svm/ │ │ └── README │ ├── tensorflow/ │ │ └── README │ ├── training_linear_models/ │ │ └── README │ └── unsupervised_learning/ │ └── README ├── index.ipynb ├── math_differential_calculus.ipynb ├── math_linear_algebra.ipynb ├── ml-project-checklist.md ├── requirements.txt ├── tools_matplotlib.ipynb ├── tools_numpy.ipynb └── tools_pandas.ipynb