All Projects → ageron → Handson Ml2

ageron / Handson Ml2

Licence: apache-2.0
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.

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to Handson Ml2

Poretools
a toolkit for working with Oxford nanopore data
Stars: ✭ 225 (-98.79%)
Mutual labels:  jupyter-notebook
Theano Tutorial
A collection of tutorials on neural networks, using Theano
Stars: ✭ 226 (-98.78%)
Mutual labels:  jupyter-notebook
Dataviz With Python And Js
The accompanying files for the book 'Dataviz with Python and JavaScript'
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook
Set transformer
Pytorch implementation of set transformer
Stars: ✭ 224 (-98.79%)
Mutual labels:  jupyter-notebook
18s096
18.S096 three-week course at MIT
Stars: ✭ 226 (-98.78%)
Mutual labels:  jupyter-notebook
Gan Tutorial
Simple Implementation of many GAN models with PyTorch.
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook
Ml From Scratch
机器学习算法 基于西瓜书以及《统计学习方法》,当然包括DL。
Stars: ✭ 225 (-98.79%)
Mutual labels:  jupyter-notebook
Nemo
NeMo: a toolkit for conversational AI
Stars: ✭ 3,685 (-80.14%)
Mutual labels:  jupyter-notebook
Tensorflow notes
Tensorflow notes
Stars: ✭ 226 (-98.78%)
Mutual labels:  jupyter-notebook
Full Stack Data Science
Full Stack Data Science in Python
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook
Text summarization with tensorflow
Implementation of a seq2seq model for summarization of textual data. Demonstrated on amazon reviews, github issues and news articles.
Stars: ✭ 226 (-98.78%)
Mutual labels:  jupyter-notebook
Example Scripts
Example Machine Learning Scripts for Numerai's Tournament
Stars: ✭ 223 (-98.8%)
Mutual labels:  jupyter-notebook
Applied Deep Learning With Keras
Deep Learning examples with Keras.
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook
Source separation
Deep learning based speech source separation using Pytorch
Stars: ✭ 226 (-98.78%)
Mutual labels:  jupyter-notebook
Dat7
General Assembly's Data Science course in Washington, DC
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook
Lrp toolbox
The LRP Toolbox provides simple and accessible stand-alone implementations of LRP for artificial neural networks supporting Matlab and Python. The Toolbox realizes LRP functionality for the Caffe Deep Learning Framework as an extension of Caffe source code published in 10/2015.
Stars: ✭ 225 (-98.79%)
Mutual labels:  jupyter-notebook
Awesome Industrial Machine Datasets
Stars: ✭ 225 (-98.79%)
Mutual labels:  jupyter-notebook
Pytorch Handbook
pytorch handbook是一本开源的书籍,目标是帮助那些希望和使用PyTorch进行深度学习开发和研究的朋友快速入门,其中包含的Pytorch教程全部通过测试保证可以成功运行
Stars: ✭ 15,817 (-14.75%)
Mutual labels:  jupyter-notebook
Decaf Release
Decaf is DEPRECATED! Please visit http://caffe.berkeleyvision.org/ for Caffe, the new framework that has all the good things: GPU computation, full train/test scripts, native C++, and an active community!
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook
Image classification with 5 methods
Compared performance of KNN, SVM, BPNN, CNN, Transfer Learning (retrain on Inception v3) on image classification problem. CNN is implemented with TensorFlow
Stars: ✭ 227 (-98.78%)
Mutual labels:  jupyter-notebook

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 (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.

  • Open In Colab

  • Open in Kaggle

  • Launch binder

  • Launch in Deepnote

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

  • Render nbviewer

  • 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.

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, 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 the detailed installation instructions.

FAQ

Which Python version should I use?

I recommend Python 3.7. 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.8 or 3.9 yet, which is why I recommend Python 3.7.

I'm getting an error when I call load_housing_data()

Make sure you call fetch_housing_data() before you call load_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 this StackOverflow question). If you downloaded Python from the official website, then run /Applications/Python\ 3.7/Install\ Certificates.command in a terminal (change 3.7 to whatever version you installed). If you installed Python using MacPorts, run sudo port install curl-ca-bundle in a terminal.

I've installed this project locally. How do I update it to the latest version?

See INSTALL.md

How do I update my Python libraries to the latest versions, when using Anaconda?

See INSTALL.md

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 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 the docker directory, and to github user SuperYorio who helped on some exercise solutions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].