Skip to content

Latest commit

 

History

History
60 lines (33 loc) · 1.75 KB

File metadata and controls

60 lines (33 loc) · 1.75 KB

Course Project

The goal of this project is to apply everything we learned in this course and build an end-to-end machine learning project.

Remember that to pass the project, you must evaluate 3 peers. If you don't do that, your project can't be considered compelete.

Submitting

Project Cohort #2

Project:

Peer reviewing:

Project feedback: link ("feedback-02" tab)

Project Cohort #1

Project:

Peer reviewing:

Project feedback: link ("feedback-02" tab)

Evaluation criteria

See here

Misc

To get the hash for your project, use this function to hash your email:

from hashlib import sha1

def compute_hash(email):
    return sha1(email.lower().encode('utf-8')).hexdigest()

Or use this website.