File size: 1,341 Bytes
3d16b79 |
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 |
---
license: apache-2.0
pipeline_tag: tabular-regression
---
# Student Performance Prediction Model
## Model Description
This model is trained to predict student performance based on various socio-economic and academic factors. It uses a regression approach to estimate the final grades of students.
## Dataset
The model was trained using the **Student Performance Predictions Dataset** from Kaggle, which includes features such as:
- Study time
- Parent education level
- Previous grades
- Absences
You can find the dataset [here](https://www.kaggle.com/datasets/student-performance).
## Training
The model was trained using the following configuration:
- **Library**: TensorFlow/Keras
- **Model Type**: Regression
- **Evaluation Metrics**: Mean Absolute Error (MAE)
## Results
The model's performance was evaluated using the validation loss (**val_loss**), which was calculated as the **Mean Absolute Error (MAE)**. The model achieved a **MAE** of X on the validation dataset.
## Metrics
The model was evaluated using **Mean Absolute Error (MAE)** on the validation set, achieving a MAE score of [your score here].
## How to Use
You can load the model and use it for prediction as follows:
```python
from tensorflow.keras.models import load_model
model = load_model("student_performance_model.h5")
# Use the model for prediction
|