iaravagni commited on
Commit
40f01ae
·
1 Parent(s): 4d6f924
Files changed (3) hide show
  1. README.md +2 -2
  2. glucose_app.py +3 -3
  3. requirements.txt +0 -0
README.md CHANGED
@@ -9,6 +9,6 @@ app_file: glucose_app.py
9
  pinned: false
10
  ---
11
 
12
- # Blood Glucose Prediction
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
9
  pinned: false
10
  ---
11
 
12
+ # 🩸 Blood Glucose Level Prediction
13
 
14
+ This project explores multiple approaches for predicting blood glucose levels using multimodal data from the Big Ideas dataset. It includes data from wearables (accelerometer), nutritional inputs, and demographic/medical history features. Our goal is to evaluate and compare naive, machine learning, and deep learning methods to provide personalized and accurate glucose level forecasts.
glucose_app.py CHANGED
@@ -6,9 +6,9 @@ import os
6
  import joblib
7
  from sklearn.metrics import root_mean_squared_error
8
 
9
- from make_dataset import create_features
10
- from naive_approach import get_column_specs, prepare_data, zeroshot_eval, simple_diagonal_averaging
11
- from ml_approach import format_dataset
12
 
13
  SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
14
  CONTEXT_LENGTH = 52
 
6
  import joblib
7
  from sklearn.metrics import root_mean_squared_error
8
 
9
+ from scripts.make_dataset import create_features
10
+ from scripts.naive_approach import get_column_specs, prepare_data, zeroshot_eval, simple_diagonal_averaging
11
+ from scripts.ml_approach import format_dataset
12
 
13
  SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
14
  CONTEXT_LENGTH = 52
requirements.txt CHANGED
Binary files a/requirements.txt and b/requirements.txt differ