Views
No views yet
| Metric | Score |
|---|---|
| Accuracy | 97% |
| Precision | 0.93 |
| Recall | 0.92 |

rf_best_test_clean.pkl → Trained RandomForest modeltest_clean_with_label.csv → Processed dataset with labelsREADME.md → Model cardLICENSE → Apache 2.0 License1from huggingface_hub import hf_hub_download
2import joblib
3import pandas as pd
4
5# Download model
6model_path = hf_hub_download(repo_id="your-username/college-admit-predictor", filename="rf_best_test_clean.pkl")
7
8# Load model
9model = joblib.load(model_path)
10
11# Example prediction
12sample = pd.DataFrame([{
13 "gre": 325, "toefl": 112, "uni_rating": 4,
14 "sop": 4.5, "lor": 4.0, "cgpa": 9.0, "research": 1,
15 "academic_score": 2.5, "gre_toefl": 36400, "cgpa_times_rating": 36.0
16}])
17
18print(model.predict(sample))