Two ML models that power skill recommendations for the Coding in Color program.
Model 1 (K-Means) → student archetype
↘
LLM → skill rec + project idea
↗
Model 2 (XGBoost) → follow-through probability
1import joblib
2import xgboost as xgb
3from huggingface_hub import hf_hub_download
4
5cluster_model = joblib.load(hf_hub_download("Dc-4nderson/cic-skillbridge-models", "model1/cluster_model.joblib"))
6scaler = joblib.load(hf_hub_download("Dc-4nderson/cic-skillbridge-models", "model1/scaler.joblib"))
7
8eng_model = xgb.XGBClassifier()
9eng_model.load_model(hf_hub_download("Dc-4nderson/cic-skillbridge-models", "model2/engagement_model.json"))