├── Meal Data Clustering
| ├── data - this folder contains training & testing data.
| │ ├── CGMData.csv
| │ ├── Result.csv
| | └── InsulinData.csv
| │
└────── Meal Data Clustering.ipynb
In the project, we will be working with a unsupervised machine learning technique called clustering. Aim is to cluster meal data based on the amount of carbohydrates in each meal.
- Extract features from Meal data
- Cluster Meal data based on the amount of carbohydrates in each meal
Extracting Ground Truth:
Derive the max and min value of meal intake amount from the Y column of the Insulin data. Discretize the meal amount in bins of size 20.
According to their meal amount label put them in the respective bins. In total you should have n = (max-min)/20
bins.
Performing clustering:
Now ignore the mealAmountData. Without using the meal amount data use the features.
Use DBSCAN or KMeans
. Try these two.
Report your accuracy of clustering based on:
- SSE
- Entropy
- Purity metrics
1.0.0
- Rahul Gaikwad - Initial work and development
I welcome your questions. Write to rahul.gaikwad2010@gmail.com