This is the repository for the Second (graded) Assignment for IAML 2019.
N.B.: This is the Level 11 version of the course: if you are an undergraduate student, then you should go to the Level 10 version, here.
conda.req
: This is the list of packages you need to complete the assignmentstyle.tex
: This is the style file for the Assignment Template. DO NOT MODIFY this file in any way.Assignment_2.tex
: This is the template you should modify to writeup your assignment.L11_Instructions.pdf
: This is the pdf with the question-sheet for the Assignment.Data
: This is a directory (folder) which contains all the data you need to complete the assignment.
These instructions are a summary of the more detailed Readme in the Lab Setup. Note that for this assignment, you should use the provided requirements file in this repository and not the one in the lab repository.
If you do not have conda, install it: otherwise skip this step:
- Download Conda from
https://docs.conda.io/en/latest/miniconda.html
- Install:
bash Miniconda3-latest-Linux-x86_64.sh
N.B. You must do this step! you cannot use the same environment as for the Labs!
- Create Environment:
conda create --name iamlassignment2 python=3.6
- Activate environment:
source activate iamlassignment2
- Install the required libraries:
conda install --file conda.req
We have provided this set of tools to aid in the coding up of the solutions. Make sure you have the above environment active
- Download or clone the repository from
https://github.com/michael-camilleri/mpctools
: e.g.git clone https://github.com/michael-camilleri/mpctools.git
- From within the downloaded directory execute:
python setup.py sdist --format=tar pip install dist/mpctools-0.3.20.tar --user