Notebooks zum Lektüre
 
Go to file
Aurélien Geron ba6c75d6e5 Update notebook 16 to TF 2.1 2020-04-06 15:22:22 +12:00
docker Remove pyvirtualdisplay from environment.yml and add it to the Dockerfile 2019-11-12 11:18:58 +08:00
images Add breakout.gif 2019-05-28 09:31:22 +08:00
work_in_progress Remove from __future__ imports as we move away from Python 2 2019-10-12 17:07:53 +09:30
.gitignore Add jsb_chorales dataset to .gitignore 2019-11-05 21:18:24 +08:00
01_the_machine_learning_landscape.ipynb Revert "updated chapter 01" 2020-01-31 14:33:25 +05:30
02_end_to_end_machine_learning_project.ipynb Make notebooks 1 to 9 runnable in Colab without changes 2019-11-05 22:26:52 +08:00
03_classification.ipynb Merge pull request #65 from patsancu/remove-hardcoded-recall-precision-threshold-coordinates 2020-02-05 09:29:48 +13:00
04_training_linear_models.ipynb Make notebooks 1 to 9 runnable in Colab without changes 2019-11-05 22:26:52 +08:00
05_support_vector_machines.ipynb Make notebooks 1 to 9 runnable in Colab without changes 2019-11-05 22:26:52 +08:00
06_decision_trees.ipynb Make notebooks 1 to 9 runnable in Colab without changes 2019-11-05 22:26:52 +08:00
07_ensemble_learning_and_random_forests.ipynb Make notebooks 1 to 9 runnable in Colab without changes 2019-11-05 22:26:52 +08:00
08_dimensionality_reduction.ipynb Make notebooks 1 to 9 runnable in Colab without changes 2019-11-05 22:26:52 +08:00
09_unsupervised_learning.ipynb Add solutions to chapter 9 code exercises 2020-01-26 19:16:11 +13:00
10_neural_nets_with_keras.ipynb Add warning about Keras issue 13586 2020-03-12 12:16:18 +13:00
11_training_deep_neural_networks.ipynb Merge branch 'master' of github.com:ageron/handson-ml2 2020-03-11 09:55:57 +13:00
12_custom_models_and_training_with_tensorflow.ipynb Fix some issues with TF 2.2 breaking changes 2020-04-02 12:52:31 +13:00
13_loading_and_preprocessing_data.ipynb Add the coding exercise solutions for chapter 13 2020-03-20 23:22:47 +13:00
14_deep_computer_vision_with_cnns.ipynb In TF 2.2.0-rc1, validation_data expects tuples, not lists, fixes #131 2020-03-31 23:10:16 +13:00
15_processing_sequences_using_rnns_and_cnns.ipynb Remove normalize=False in Audio since it does not work in Colab 2020-03-28 10:29:34 +13:00
16_nlp_with_rnns_and_attention.ipynb Update notebook 16 to TF 2.1 2020-04-06 15:22:22 +12:00
17_autoencoders_and_gans.ipynb In TF 2.2.0-rc1, validation_data expects tuples, not lists, fixes #131 2020-03-31 23:10:16 +13:00
18_reinforcement_learning.ipynb Fix error in commented out code, fixes #89 2020-03-31 21:39:51 +13:00
19_training_and_deploying_at_scale.ipynb Make notebooks 14 to 19 runnable in Colab without changes 2019-11-06 21:06:55 +08:00
INSTALL.md Spelling change in INSTALL.md 2020-01-31 12:54:26 +05:30
LICENSE First notebook added: matplotlib 2016-02-16 21:40:20 +01:00
README.md Add thanks to SuperYorio 2020-03-11 10:07:34 +13:00
apt.txt Add apt.txt for Binder 2019-10-27 20:32:13 -07:00
book_equations.pdf Updated book_equations.ipynb and replaced it with a PDF, fixes #104 2020-04-03 21:37:33 +13:00
changes_in_2nd_edition.md First to do => First thing to do 2019-09-28 22:55:02 +08:00
environment-windows.yml Fixes #73, tensorflow-addons and tensorflow-metadata installed via pip, not conda 2019-12-16 17:25:55 +08:00
environment.yml Upgrade to recent library versions 2020-03-21 13:48:09 +13:00
extra_gradient_descent_comparison.ipynb Remove from __future__ imports as we move away from Python 2 2019-10-12 16:40:05 +09:30
index.ipynb Updated book_equations.ipynb and replaced it with a PDF, fixes #104 2020-04-03 21:37:33 +13:00
math_linear_algebra.ipynb Merge pull request #85 from vasili111/patch-1 2020-02-05 09:20:44 +13:00
requirements.txt Update requirements.txt 2020-04-03 22:17:57 +13:00
tools_matplotlib.ipynb Remove from __future__ imports as we move away from Python 2 2019-10-12 16:40:05 +09:30
tools_numpy.ipynb Remove from __future__ imports as we move away from Python 2 2019-10-12 16:40:05 +09:30
tools_pandas.ipynb Remove from __future__ imports as we move away from Python 2 2019-10-12 16:40:05 +09:30

README.md

Machine Learning Notebooks

This project aims at teaching you the fundamentals of Machine Learning in python. It contains the example code and solutions to the exercises in the second edition of my O'Reilly book Hands-on Machine Learning with Scikit-Learn, Keras and TensorFlow:

Note: If you are looking for the first edition notebooks, check out ageron/handson-ml.

Quick Start

Want to play with these notebooks online without having to install anything?

Use any of the following services.

WARNING: Please be aware that these services provide temporary environments: anything you do will be deleted after a while, so make sure you download any data you care about.

  • Recommended: open this repository in Colaboratory:

  • Or open it in Binder:

    • Note: Most of the time, Binder starts up quickly and works great, but when handson-ml2 is updated, Binder creates a new environment from scratch, and this can take quite some time.
  • Or open it in Deepnote:

Just want to quickly look at some notebooks, without executing any code?

Browse this repository using jupyter.org's notebook viewer:

Note: github.com's notebook viewer also works but it is slower and the math equations are not always displayed correctly.

Want to run this project using a Docker image?

Read the Docker instructions.

Want to install this project on your own machine?

Start by installing Anaconda (or Miniconda), git, and if you have a TensorFlow-compatible GPU, install the GPU driver.

Next, clone this project by opening a terminal and typing the following commands (do not type the first $ signs on each line, they just indicate that these are terminal commands):

$ git clone https://github.com/ageron/handson-ml2.git
$ cd handson-ml2

If you want to use a GPU, then edit environment.yml (or environment-windows.yml on Windows) and replace tensorflow=2.0.0 with tensorflow-gpu=2.0.0. Also replace tensorflow-serving-api==2.0.0 with tensorflow-serving-api-gpu==2.0.0.

Next, run the following commands:

$ conda env create -f environment.yml # or environment-windows.yml on Windows
$ conda activate tf2
$ python -m ipykernel install --user --name=python3

Then if you're on Windows, run the following command:

$ pip install --no-index -f https://github.com/Kojoley/atari-py/releases atari_py

Finally, start Jupyter:

$ jupyter notebook

If you need further instructions, read the detailed installation instructions.

Contributors

I would like to thank everyone who contributed to this project, either by providing useful feedback, filing issues or submitting Pull Requests. Special thanks go to Haesun Park who helped on some of the exercise solutions, and to Steven Bunkley and Ziembla who created the docker directory. Thanks as well to github user SuperYorio for helping out on the coding exercise solutions.