CMSC 5724 Project Page


Team Coding

Each team can contain up to 5 members and will implement a designated algorithm either in C++, Java, or Python. The implementation must be from scratch, i.e., it can use only functions from a standard library, for example: Use of any function outside the above libraries is not permitted unless prior approval has been obtained from the instructor. All source code is subject to plagiarism scrutiny. All kinds of dishonesty will be reported to the university for disciplinary actions.

Deploying a programming language other than the above requires an approval from the instructor.

Project List

Each team needs to work on two arbitrary projects from the following list. The list will still growing and will contain 5 or 6 projects eventually. Additional projects will be released after their topics have been covered in the lectures.


Project #1: Decision Tree

Goal

Implement Hung's algorithm for decision tree classification

Dataset

We will use the Adult dataset whose description is available here. The training set (adult.data) and evaluation set (adult.test) can be downloaded here.

Preprocessing

Remove all the records containing '?' (i.e., missing values). Also, remove the attribute "native-country".

Deliverables


Project #2: Margin Perceptron

Goal

Implement the margin perceptron algorithm.

Dataset

Your implementation should work on any dataset in the following format: We have prepared three datasets for you:
2d-r16-n10000
4d-r24-n10000
8d-r12-n10000

Deliverables