Notebooks zum Lektüre
 
Go to file
Aurélien Geron 793c3a2574 Make notebooks compatible with both python 2 and python 3 2016-02-19 12:22:42 +01:00
.gitignore Finished the numpy tutorial 2016-02-18 22:00:33 +01:00
LICENSE First notebook added: matplotlib 2016-02-16 21:40:20 +01:00
README.md Update installation instructions, and replace 'import numpy' with 'import numpy as np' 2016-02-19 11:34:59 +01:00
index.ipynb Make notebooks compatible with both python 2 and python 3 2016-02-19 12:22:42 +01:00
requirements.txt All pip requirements in requirements.txt 2016-02-19 11:14:26 +01:00
tools_matplotlib.ipynb Make notebooks compatible with both python 2 and python 3 2016-02-19 12:22:42 +01:00
tools_numpy.ipynb Make notebooks compatible with both python 2 and python 3 2016-02-19 12:22:42 +01:00

README.md

Machine Learning Notebooks

This project aims at teaching you the fundamentals of Machine Learning in python.

Simply open the Jupyter notebooks you are interested in:

  • using Binder: Binder
    • this let's you experiment with the code examples
  • or directly within github (start at index.ipynb)
  • or by cloning this repository and running Jupyter locally.
    • if you prefer this option, follow the installation instructions below.

Installation

Obviously, you will need git and python (2 or 3).

First, clone this repository:

$ cd {your development directory}
$ git clone https://github.com/ageron/ml-notebooks.git
$ cd ml-notebooks

If you want an isolated environment, you can use virtualenv:

$ virtualenv env
$ source ./env/bin/activate

Next, edit requirements.txt to uncomment the right version of TensorFlow for your platform, then install the required python packages using pip:

$ pip install -r requirements.txt

Finally, launch Jupyter:

$ jupyter notebook

This should start the Jupyter server locally, and open your browser. Click on index.ipynb to get started.