#!/usr/bin/env python # coding: utf-8 # # Machine Learning Notebooks # # *Welcome to the Machine Learning Notebooks!* # # [Prerequisites](#Prerequisites) (see below) # # # #
# Run in Google Colab #
# **Warning**: this project contains the code for the 1st edition of the book. Please visit https://github.com/ageron/handson-ml2 for the 2nd edition code, with up-to-date notebooks using the latest library versions. In particular, the 1st edition is based on TensorFlow 1, while the 2nd edition uses TensorFlow 2, which is much simpler to use. # ## Notebooks # 1. [The Machine Learning landscape](01_the_machine_learning_landscape.ipynb) # 2. [End-to-end Machine Learning project](02_end_to_end_machine_learning_project.ipynb) # 3. [Classification](03_classification.ipynb) # 4. [Training Linear Models](04_training_linear_models.ipynb) # 5. [Support Vector Machines](05_support_vector_machines.ipynb) # 6. [Decision Trees](06_decision_trees.ipynb) # 7. [Ensemble Learning and Random Forests](07_ensemble_learning_and_random_forests.ipynb) # 8. [Dimensionality Reduction & Unsupervised Learning](08_dimensionality_reduction.ipynb) # 9. [Up and running with TensorFlow](09_up_and_running_with_tensorflow.ipynb) # 10. [Introduction to Artificial Neural Networks](10_introduction_to_artificial_neural_networks.ipynb) # 11. [Deep Learning](11_deep_learning.ipynb) # 12. [Distributed TensorFlow](12_distributed_tensorflow.ipynb) # 13. [Convolutional Neural Networks](13_convolutional_neural_networks.ipynb) # 14. [Recurrent Neural Networks](14_recurrent_neural_networks.ipynb) # 15. [Autoencoders](15_autoencoders.ipynb) # 16. [Reinforcement Learning](16_reinforcement_learning.ipynb) # ## Scientific Python tutorials # * [NumPy](tools_numpy.ipynb) # * [Matplotlib](tools_matplotlib.ipynb) # * [Pandas](tools_pandas.ipynb) # ## Math Tutorials # * [Linear Algebra](math_linear_algebra.ipynb) # * [Differential Calculus](math_differential_calculus.ipynb) # ## Extra Material # * [Capsule Networks](extra_capsnets.ipynb) # * [TensorFlow Reproducibility](extra_tensorflow_reproducibility.ipynb) # ## Misc. # * [Equations](book_equations.ipynb) (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](https://docs.python.org/3/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. If you just plan to read without running any code, there's really nothing more to know, just keep reading! But if you want to experiment with the code examples you need to: # * follow the [installation instructions](https://github.com/ageron/handson-ml/#installation), # * learn how to use Jupyter. Start the User Interface Tour from the Help menu. # In[ ]: