FranciscoLozDataScience commited on
Commit
5c60915
·
1 Parent(s): 7f67122

updated info in information page

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -48,21 +48,20 @@ def load_interface():
48
  """
49
  # Ensemble Classifier for Predicting Smoker or Non-Smoker
50
 
51
- Contributors: Matt Soria, Jake Leniart, Francisco Lozano
52
- University: Depaul University
53
- Class: DSC 478, Programming Machine Learning
54
- ---
55
 
56
  ## Overview
57
- For our project we decided to create a classifer for a kaggle dataset that has bio-signals along with information on whether individuals are smokers or non-smokers. Our classifier attempts to identify whether or not a patient is a smoker based on the 22 features provided.
58
- [Smoker Dataset](https://www.kaggle.com/datasets/gauravduttakiit/smoker-status-prediction-using-biosignals?resource=download&select=train_dataset.csv).
59
 
60
  ## Classifier Metrics
61
 
62
  TODO: insert the classification report and confusion matrix
63
 
64
  ## Report
65
- To learn more about our Ensemble Classifier, view our jupyter notebooks in our repo.
66
  [DSC 478 Project Repo](https://github.com/msoria17/dsc478-project)
67
  """
68
  )
 
48
  """
49
  # Ensemble Classifier for Predicting Smoker or Non-Smoker
50
 
51
+ **Contributors**: Matt Soria, Jake Leniart, Francisco Lozano
52
+ **University**: Depaul University
53
+ **Class**: DSC 478, Programming Machine Learning
 
54
 
55
  ## Overview
56
+ Our project focused on creating a classifier for a Kaggle dataset containing bio-signals and information on individuals' smoking status. The classifier aims to identify whether a patient is a smoker based on 22 provided features. You can find the dataset [here](https://www.kaggle.com/datasets/gauravduttakiit/smoker-status-prediction-using-biosignals?resource=download&select=train_dataset.csv).
57
+ We developed an Ensemble Classifier with Soft Voting, which combines KNN, SVM, and XGBoost classifiers.
58
 
59
  ## Classifier Metrics
60
 
61
  TODO: insert the classification report and confusion matrix
62
 
63
  ## Report
64
+ For more details about our Ensemble Classifier and the individual models, please refer to our Jupyter notebooks in our project repository.
65
  [DSC 478 Project Repo](https://github.com/msoria17/dsc478-project)
66
  """
67
  )