EEL5840 – Fundamentals of Machine Learning Final Project Solved

$ 29.99
Category:

Description

Title: Handwritten Mathematical Symbols Classification
1. Description
In the final project, you will develop a machine learning system to classify traffic signs. The data set is to be collected by all students enrolled in this course. You can implement this system yourselves or using a package/library. You can use any packages that come as a default option with Anaconda or PyTorch. I need to be able to run your implementation on my machine. So, be sure to get approval from me for any special packages! If I cannot run the code, you will lose a significant number of points.
2. Data Set
Each group will collect part of the training set that everyone will use to train their machine learning models. There’s a total of 10 mathematical symbols (10 classes). Table 1 shows the interger encoding we will use for all 10 classes.
Each student is responsible for collecting part of the dataset you will submit as a group. Each individual will collect 10 images for each math symbol, giving a total of 100 images per student. So, for a group with 4 members, there should be a total of 400 images.
Math Symbol Label Integer Encoding
x x 0
√ square root 1
+ plus sign 2
– negative sign 3
= equal 4
% percent 5
∂ partial 6
Q product 7
π pi 8
P summation 9
Table 1: Integer encoding for each traffic sign class.
2.1. Coding System
I recommend you to save your files using a coding system, e.g. ID-trial-label.
• First give a number from 1 to 4 to each team member, this is the ID. Then, for example, when team member with ID 4 is recording hers/his 5th picture of class 2, the file name should read ”4-5-2.jpg”.
After collecting all the data from all teams, I will merge it and randomly partition it into a training set (about 70%) and an easy test set (about 30%). You will all be given the same training set to train your model/s. I will hold the easy test set until after you submit your code implementation and report. This blind test set will be used for grading.
I will also create a separate hard test set containing images with full equations. This textbfhard test set will be used for extra credit contest – see details below.
3. Project Report
You should write a report that includes the sections listed below. Your report should follow the IEEE transactions format (single spaced, double column).
• You can find a (word doc or LaTeX) template for the IEEE transactions format here: https://www.ieee.org/conferences/publishing/ templates.html
Focus your report on your training and testing strategies for the contest and any unique implementations. The maximum number of pages for the report is 4. If there are any pages beyond page 4, they will be discarded and not read or graded. It should be written with correct English grammar and spelling. Be precise – use pseudo-code or equations to be precise.
For full credit consideration, your report should include the following sections:
• Abstract. A summary description of the contents of the report and your findings.
• Introduction. Overview of your experiment/s and a literature review. For the literature review, include any references to any relevant papers for your experiment/s. So, whatever you decide to do, search the ACM and IEEE (or other) literature for relevant papers to read and refer to.
• Implementation. Describe and outline any specific implementation details for your project. A reader should be able to recreate your implementation and experiments from your project report. If you participate in the extra credit contest, be sure to describe the methodology on how you will identify unknown classes that were not in the training data.
• Experiments. Carefully describe your experiments with the training data set and any data augmentation set you constructed or existing data sets. Include a description for the goal of each experiment and experimental findings. This is the bulk of what you will be graded on – if your experimental design is not sound or your experiments do not make sense, you will lose points.
• Conclusions. Describe any conclusions or things you learned from the project. Your conclusions must follow from what you did. Do not copy something out of a paper or say something that has no experimental support in the Experiments section.
• References. Listing of all references in IEEE bibliography format.
When writing the report as a group, I recommend you to use Google Docs using your UFL account. This way you can all make synchronous and simultaneous edits in your project report. Of course, you should always keep the latest version of your report in your GitHub repo.
4. Project Code Implementation
You can use any packages that come as a default option with Anaconda or PyTorch. I need to be able to run your implementation on my machine. So, be sure to get approval from me for any special packages! If I cannot run the code, you will lose a significant number of points.
You can implement your algorithm using Jupyter Notebook or your favorite integrated development environment (IDE). Your final code submission should contain 3 files:
• README file – directly edited in your GitHub team repository
• train.py or a Notebook (.ipynb) with a function ”train”. This function should contain the code used to train your final model. • test.py or a Notebook (.ipynb) with a function ”test”. This function should receive data and labels in the same format as the training data and output an accuracy value and the predicted labels. • if you compete in the contest, you can create a separate file for testing on the hard test set (or include it in test.py). This function should receive data and labels in the same format as the training data and output an accuracy value and the predicted labels.
5. Grading Details
Your grade will be determined using the following breakdown:
• 10% Data collection
– You will be graded on data collection. Each person should collect 100 pictures with the specifications mentioned in section 2.
• 25% Implementation
– Turn in code that follows the submission requirements described above
• 25% Accuracy on ”easy” blind test data set
– The ”easy” test set is composed of the held-out blind test set with all labels.
– Your code should produce the integer-coding label encoding defined in Table 1.
– Full points on this component will be obtained if you correctly classify 90% of the blind test data or have a classification accuracy rate greater than the average classification accuracy rate of the class (whichever is lower).
• 40% Project report
– This component will be graded based on the requirements outlined in section 3.
6. Extra Credit Contest
The goal of this project is to implement an end-to-end system to perform handwritten mathematical symbols classification. The teams with the best classification accuracy on the ”hard” data set will earn extra credit. The ”hard” data set will contain images with full equations. The goal is to
identify all symbols present and classify them with the appropriate labels.

For example, consider an image with the equation Q x = π. Your system should output 71048. You can expect each symbol to be written such that they are horizontally spaced out.
If there are any characters not included in training (e.g. numerical dig-
its), your system should predict an unknown class with a u label. For ex-

ample, consider an image with the equation Q x = 0. Your system should output 7104u.
For the hard test set, please have your test function output:
• the number of detected symbols
• the prediction for each character
7. Submission Details
Be sure your repository contains the following files: train.py (includes a function that will run your training code on an input data set X and desired output vector Y . Any parameter settings must be easy to find and modify.), test.py (includes a function that will run your testing code on an input data set X. Note: Your test.py code should already be trained and have parameters set! Any parameter settings must be easy to find and modify. It should return a vector with the class label associated with each input data point X) and a concise README.txt file that clearly illustrates how to run your code. Your classification accuracy on a small test data set will factor into your project grade.

Reviews

There are no reviews yet.

Be the first to review “EEL5840 – Fundamentals of Machine Learning Final Project Solved”

Your email address will not be published. Required fields are marked *