This site hosts notebooks corresponding to the book Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow, 2nd edition
These notebooks were sourced from ageron/handson-ml2, with express permission of the author.
This site was built with fastpages, An easy to use blogging platform, with enhanced support for Jupyter Notebooks.
Machine Learning Notebooks
Prerequisites (see below)
Notebooks
- The Machine Learning landscape
- End-to-end Machine Learning project
- Classification
- Training Models
- Support Vector Machines
- Decision Trees
- Ensemble Learning and Random Forests
- Dimensionality Reduction
- Unsupervised Learning Techniques
- Artificial Neural Nets with Keras
- Training Deep Neural Networks
- Custom Models and Training with TensorFlow
- Loading and Preprocessing Data
- Deep Computer Vision Using Convolutional Neural Networks
- Processing Sequences Using RNNs and CNNs
- Natural Language Processing with RNNs and Attention
- Representation Learning Using Autoencoders
- Reinforcement Learning
- Training and Deploying TensorFlow Models at Scale
Scientific Python tutorials
Math Tutorials
Misc.
- Equations (list of equations in the book)
Prerequisites
To understand
- Python – you don't need to be an expert python programmer, but you do need to know the basics. If you don't, the official Python tutorial is a good place to start.
- Scientific Python – We will be using a few popular python libraries, in particular NumPy, matplotlib and pandas. If you are not familiar with these libraries, you should probably start by going through the tutorials in the Tools section (especially NumPy).
- Math – We will also use some notions of Linear Algebra, Calculus, Statistics and Probability theory. You should be able to follow along if you learned these in the past as it won't be very advanced, but if you don't know about these topics or you need a refresher then go through the appropriate introduction in the Math section.
To run the examples
- Jupyter – These notebooks are based on Jupyter. You can run these notebooks in just one click using a hosted platform such as Binder, Deepnote or Colaboratory (no installation required), or you can just view them using Jupyter.org's viewer, or you can install everything on your machine, as you prefer. Check out the home page for more details.