- Notifications
You must be signed in to change notification settings - Fork0
A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.
License
NF-laidback/handson-ml2
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
⚠ The 3rd edition of my book will be released in October 2022. The notebooks are available atageron/handson-ml3 and contain more up-to-date code.
This project aims at teaching you the fundamentals of Machine Learning inpython. It contains the example code and solutions to the exercises in the second edition of my O'Reilly bookHands-on Machine Learning with Scikit-Learn, Keras and TensorFlow:
Note: If you are looking for the first edition notebooks, check outageron/handson-ml. For the third edition, check outageron/handson-ml3.
Use any of the following services (I recommended Colab or Kaggle, since they offer free GPUs and TPUs).
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.
github.com's notebook viewer also works but it's not ideal: it's slower, the math equations are not always displayed correctly, and large notebooks often fail to open.
Read theDocker instructions.
Start by installingAnaconda (orMiniconda),git, and if you have a TensorFlow-compatible GPU, install theGPU driver, as well as the appropriate version of CUDA and cuDNN (see TensorFlow's documentation for more details).
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
Next, run the following commands:
$ conda env create -f environment.yml$ conda activate tf2$ python -m ipykernel install --user --name=python3
Finally, start Jupyter:
$ jupyter notebook
If you need further instructions, read thedetailed installation instructions.
Which Python version should I use?
I recommend Python 3.8. If you follow the installation instructions above, that's the version you will get. Most code will work with other versions of Python 3, but some libraries do not support Python 3.9 or 3.10 yet, which is why I recommend Python 3.8.
I'm getting an error when I callload_housing_data()
Make sure you callfetch_housing_data()
before you callload_housing_data()
. If you're getting an HTTP error, make sure you're running the exact same code as in the notebook (copy/paste it if needed). If the problem persists, please check your network configuration.
I'm getting an SSL error on MacOSX
You probably need to install the SSL certificates (see thisStackOverflow question). If you downloaded Python from the official website, then run/Applications/Python\ 3.8/Install\ Certificates.command
in a terminal (change3.8
to whatever version you installed). If you installed Python using MacPorts, runsudo port install curl-ca-bundle
in a terminal.
I've installed this project locally. How do I update it to the latest version?
SeeINSTALL.md
How do I update my Python libraries to the latest versions, when using Anaconda?
SeeINSTALL.md
I would like to thank everyonewho contributed to this project, either by providing useful feedback, filing issues or submitting Pull Requests. Special thanks go to Haesun Park and Ian Beauregard who reviewed every notebook and submitted many PRs, including help on some of the exercise solutions. Thanks as well to Steven Bunkley and Ziembla who created thedocker
directory, and to github user SuperYorio who helped on some exercise solutions.
About
A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Languages
- Jupyter Notebook100.0%