This hospital-readmission-phase2-lr model predicts the risk of 30-day hospital readmission for diabetic patients. The model was trained on the UCI Diabetes 130-US Hospitals dataset with robust cross-validation and comprehensive evaluation.
1{
2 "C": 0.1,
3 "class_weight": "balanced",
4 "max_iter": 2000,
5 "penalty": "l1",
6 "solver": "liblinear"
7}
1import joblib
2import pandas as pd
3
4# Load the trained model
5model = joblib.load('gradient_boosting_model.joblib')
6
7# Load your preprocessed features
8X_new = pd.read_csv('your_features.csv')
9
10# Make predictions
11predictions = model.predict(X_new)
12probabilities = model.predict_proba(X_new)[:, 1]
The model expects preprocessed features from the UCI Diabetes 130-US Hospitals dataset. Features include:
This model is intended to assist healthcare providers in identifying patients at risk of readmission. It should:
1@misc{hospital-readmission-phase2-lgbm,
2 author = {Your Name},
3 title = {LightGBM Model for Hospital Readmission Prediction},
4 year = {2025},
5 url = {https://huggingface.co/your-repo}
6}
1@misc{strack2014impact,
2 title={Impact of HbA1c Measurement on Hospital Readmission Rates: Analysis of 70,000 Clinical Database Patient Records},
3 author={Strack, Beata and DeShazo, Jonathan P and Gennings, Chris and Olmo, Juan L and Ventura, Sebastian and Cios, Krzysztof J and Clore, John N},
4 journal={BioMed Research International},
5 volume={2014},
6 year={2014},
7 publisher={Hindawi}
8}
This model is released under the MIT License. The underlying dataset has its own license terms.
For questions or issues, please open an issue in the repository.