Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
pipeline_tag: tabular-regression
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# Student Performance Prediction Model
|
| 7 |
+
|
| 8 |
+
## Model Description
|
| 9 |
+
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.
|
| 10 |
+
|
| 11 |
+
## Dataset
|
| 12 |
+
The model was trained using the **Student Performance Predictions Dataset** from Kaggle, which includes features such as:
|
| 13 |
+
- Study time
|
| 14 |
+
- Parent education level
|
| 15 |
+
- Previous grades
|
| 16 |
+
- Absences
|
| 17 |
+
|
| 18 |
+
You can find the dataset [here](https://www.kaggle.com/datasets/student-performance).
|
| 19 |
+
|
| 20 |
+
## Training
|
| 21 |
+
The model was trained using the following configuration:
|
| 22 |
+
- **Library**: TensorFlow/Keras
|
| 23 |
+
- **Model Type**: Regression
|
| 24 |
+
- **Evaluation Metrics**: Mean Absolute Error (MAE)
|
| 25 |
+
|
| 26 |
+
## Results
|
| 27 |
+
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.
|
| 28 |
+
|
| 29 |
+
## Metrics
|
| 30 |
+
The model was evaluated using **Mean Absolute Error (MAE)** on the validation set, achieving a MAE score of [your score here].
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
## How to Use
|
| 34 |
+
You can load the model and use it for prediction as follows:
|
| 35 |
+
```python
|
| 36 |
+
from tensorflow.keras.models import load_model
|
| 37 |
+
|
| 38 |
+
model = load_model("student_performance_model.h5")
|
| 39 |
+
# Use the model for prediction
|