File size: 1,104 Bytes
86bb620 0e0b5c9 86bb620 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
---
language: en
license: apache-2.0
tags:
- tabular
- regression
- autogluon
metrics:
- rmse
---
# AutoGluon Tabular Model
This is a regression model trained to predict grade scores.
## Usage
```python
from autogluon.tabular import TabularPredictor
from huggingface_hub import snapshot_download
import pandas as pd
model_dir = snapshot_download(repo_id="DeltaSatellite1/grade_prediction")
predictor = TabularPredictor.load(model_dir)
# Example DataFrame
df = pd.DataFrame([{
"weighted gpa":3.6,
"term gpa":3.5,
"class grade": 90,
"assigned date":"9/22/2025",
"due date":"9/29/2025",
"field":"Math",
"field average (%)": 90,
"category":"Test",
"category weight":0.7,
"category average":90,
"daily hours available":9,
"days before due":9,
"difficulty":"High",
"field proficiency":"High",
"teacher experience": "High",
"work day positivity": "High",
"incentive":"High",
"confidence":"High",
"attendence":"High",
"participation":"High",
"procrastination": "high"
}])
# Example prediction
print(predictor.predict(df)) |