Sale!

CSE 572 Project 2 Machine Model Training solution

$30.00 $25.50

Category:

Description

5/5 - (4 votes)

Purpose
In this project you will use a training dataset to train and test a machine model. The purpose is to distinguish
between meal and no meal time series data.
Objectives
Students will be able to:
● Develop code to train a machine model.
● Assess accuracy of machine model.
Technology Requirements
Python 3.6 to 3.8 (do not use 3.9).
scikit-learn==0.21.2
pandas==0.25.1
Python pickle
Project Description
In this project you will train a machine model to assess whether a person has eaten a meal or not eaten a
meal. A training data set is provided.
Directions
Meal data can be extracted as follows:
From the InsulinData.csv file, search the column Y for a non NAN non zero value. This time indicates
the start of meal consumption time tm. Meal data comprises a 2hr 30 min stretch of CGM data that
starts from tm-30min and extends to tm+2hrs.
No meal data comprises 2 hrs of raw data that does not have meal intake.
Extraction: Meal data
Start of a meal can be obtained from InsulinData.csv. Search column Y for a non NAN non zero value.
This time indicates the start of a meal. There can be three conditions:
● There is no meal from time tm to time tm+2hrs. Then use this stretch as meal data
● There is a meal at some time tp in between tp>tm and tp< tm+2hrs. Ignore the meal data at time
tm and consider the meal at time tp instead.
● There is a meal at time tm+2hrs, then consider the stretch from tm+1hr 30min to tm+4hrs as
meal data.
Extraction: No Meal data
Start of no meal is at time tm+2hrs where tm is the start of some meal. We need to obtain a 2 hr stretch
of no meal time. So you need to find all 2 hr stretches in a day that have no meal and do not fall within
2 hrs of the start of a meal.
Handling missing data:
You have to carefully handle missing data. This is an important data mining step that is required for
many applications. Here there are several approaches: a) ignore the meal or no meal data stretch if the
number of missing data points in that stretch is greater than a certain threshold, b) use linear interpolation (not
a good idea for meal data but maybe for no meal data), c) use polynomial regression to fill up missing data
(untested in this domain). Choose wisely.
Feature Extraction and Selection:
You have to carefully select features from the meal time series that are discriminatory between meal
and no meal classes.
Test Data:
The test data will be a matrix of size N×24, where N is the total number of tests and 24 is the size of the
CGM time series. N will have some distribution of meal and no meal data.
Note here that for meal data you are asked to obtain a 2 hr 30 min time series data, while for no meal
you are taking 2 hr. However, a machine will not take data with different lengths. Hence, in the feature
extraction step, you have to ensure that features extracted from both meal and no meal data have the
same length.
Output format:
You have to output an N×1 vector of 1s and 0s, where if a row is determined to be meal data, then the
corresponding entry will be 1, and if determined to be no meal, the corresponding entry will be 0.
This vector should be saved in a “Result.csv” file.
2 CSE 572
Given:
Meal Data and No Meal Data of subject 1 and 2
Ground truth labels of Meal and No Meal for subject 1 and 2
Using Python, train a machine model to recognize whether a sample in the training data set represents a
person who has eaten (Meal), or not eaten (No Meal). The training data set contains ground truth labels of
Meal and No Meal for 5 subjects.
You will need to perform the following tasks:
1. Extract features from Meal and No Meal training data set.
2. Make sure that the features are discriminatory.
3. Train a machine to recognize Meal or No Meal data.
4. Use k fold cross validation on the training data to evaluate your recognition system.
5. Write a function that takes a single test sample as input, and outputs 1 if it predicts the test sample
as meal or 0 if it predicts test sample as No meal.
Submission Directions for Project Deliverables
Two python files: a) train.py and b) test.py
The train.py reads CGMData.csv, CGM_patient2.csv and InsulinData.csv, Insulin_patient2.csv, extracts meal
and no-meal data, extracts features, trains your machine to recognize meal and no-meal classes, and stores
the machine in a pickle file (Python API pickle).
The test.py reads test.csv which has the N x 24 matrix and outputs a Result.csv file which has N x 1 vector of
1s and 0s, where 1 denotes meal, 0 denotes no meal.
Assume that CGMData.csv, CGM_patient2.csv and InsulinData.csv, Insulin_patient2.csv files are all in your
compilation and execution folder. Avoid using static paths.
Evaluation
You will be evaluated on your code as well as the accuracy of your results based on a set of Meal and No Meal
data that is not included in the training set.
50 points for developing a code in Python that takes the given dataset, extracts Meal and No Meal data and
trains a machine model
3 CSE 572
20 points for developing a code in Python that implements a function to take a test input and run the trained
machine to provide the class label as output
30 points will be evaluated on the accuracy, F1 score, Precision and Recall results obtained by your machine.
This will be compared against class average to determine the final score.
4 CSE 572