This repository contains the exercises and questions for assignment 3.
- Start by cloning this repository to your computer.
- You can do the assignment on your own computer, or use Google Colab.
-
To run it locally, make sure that you have Python 3.6 or higher installed. Try running
jupyter notebookfrom the command line.-
If it works, open
A3.ipynband continue with the explanations and tasks there. -
If that doesn't work, you first have to install Jupyter notebook. You may also have to install other packages:
numpy,pandas,matplotlib,scikit-learnandscikit-learn-extra.
-
-
To use Google Colab, upload
A3.ipynband proceed with the notebook from there.
-
If you have difficulty installing a needed package, we recommend either asking for help or switching to Colab. In Colab, to install a package, you can run a cell with the command:
!pip install (name of package)
The ! will send the command out of the notebook, to the command line of Google Colab.