A-Harry / ML2

ML course - second semester

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

COMP 3132 - Python ML, part 2

Course outline

Book

Introductory videos

Installing Keras on your laptop

Note: This will take some time and download several hundred MB.

If you already have Anacanoda, open Anaconda prompt and first update conda by running

conda update conda

Then install keras

conda install keras

Test it by running import keras in python, you should see output like Using TensorFlow backend or Using CNTK backend - either is good. If you see any warnings about lack of GPU, that's also ok.

If you have a recent Nvidia GPU you can try following the CNTK instructions to istall the GPU version of CNTK but this is optional.

Week 1

Week 2

Week 3

Week 4

Week 5

Week 6

  • There was no lecture
  • Lab. Revising the MPG dataset using this notebook from the previous semester. Replace the decision tree with a neural network.

Week 7 - Midterm

Prep advice

  • Solve lab exercises
  • Go over the MNIST video from sentdex
  • Read chapters 3 of the book (skip section 3.3)
  • Solve more lab exercises
  • From chapter 4 read till section 4.3
  • Read chapters 1 and 2 of the book

Main topics and concepts to be familiar with

  • Data manipulation in NumPy and Pandas
  • Metrics used for evaluating and comparing ML models of different types
  • Overfitting
  • Train/validation/test data splitting and why we do this
  • Concepts about neural nets - weights, layers, activation functions, loss functions

Home assignment 2 - due March 13

  • Instructions
  • This home assignment is also an excellent practice exercise for the midterm

Week 8 - Intersession

Week 9

Week 10

Week 11

Home assignment 3 - due April 10

Week 12

Week 13

Week 14

Exam prep adivce

  • Re-read chapter 4
  • Experiment with lab exercise from week 13

About

ML course - second semester


Languages

Language:Jupyter Notebook 100.0%