Skip to content

Latest commit

 

History

History
 
 

07-project

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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.