-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metabolic Syndrome Prediction | 5. Model prediction and evaluation #156
Metabolic Syndrome Prediction | 5. Model prediction and evaluation #156
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job, @Arihant-Bhandari! 🎉 Thank you for submitting your pull request. Your contribution is valuable and we appreciate your efforts to improve our project.
We will promptly review your changes and offer feedback. Keep up the excellent work! Kindly remember to check our contributing guidelines
hi @SrijanShovit this is the initial work i hope to get feedback on, from the problem statement i have devised stuff for XGBClassifier, if this work is found satisfactory i will continue with this for all other models, pls check up on this. if anything is to be added or changed, i will be glad to do them. thank you for your time and patience. |
This issue has been automatically closed because it has been inactive for more than 7 days. If you believe this is still relevant, feel free to reopen it or create a new one. Thank you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Process of a model prediction is fine but repeat same thing for various models.
In the end, use 2-3 neural networks as well.
…all metrics into METRICS.md
Hi @SrijanShovit , the work on this PR is complete, pls review and if any suggestions or changes are to be made, please let me know, will gladly make the required changes. |
This issue has been automatically closed because it has been inactive for more than 7 days. If you believe this is still relevant, feel free to reopen it or create a new one. Thank you! |
closes issue #98 Metabolic Syndrome Prediction | 5. Model prediction and evaluation
worked on step 5:
Write generic functions.
Use all features; no feature engineering (transformation, selection, extraction, dropping here)
Use both normalized and standardized data.
Use hyperparameter tuning for models.
Use some training strategy like LOSO or K-Fold.
Record time to find best params and time to train using those params.
on test data and print all eval metrics.
If it is binary classification, plot ROC to find optimal threshold.
Using that, plot Confusion matrix to evaluate the models.
Models to use: Extra Trees, SVM, Logistic, KNN, DT, RF, GB, Bagging Clf, XGB, Hist GB, MLP, Catboost, Adaboost, Naive Bayes, LightGBM
Worked on the following models: