1.6 KiB
1.6 KiB
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:
- 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
Default platform is python 2, Ubuntu/Linux 64 bits. If your platforms is different, please edit requirements.txt
using your favorite editor, comment the tensorflow line and 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.