File size: 4,393 Bytes
535005e | 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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | ---
language:
- en
license: apache-2.0
tags:
- text-classification
- student-stress
- mental-health
- education
- tensorflow
- keras
pipeline_tag: text-classification
metrics:
- accuracy
- f1
---
# Student Stress Prediction Model
## Model Summary
This model predicts stress levels in students based on behavioral, academic, and psychological indicators. It was developed as part of research into the implications of AI on student stress β supporting a forthcoming peer-reviewed publication on the topic.
The model is built with TensorFlow/Keras and is designed for binary or multi-class classification of student stress levels from structured survey/feature data.
---
## Model Details
- **Developed by:** Chandrasekar Adhithya Pasumarthi ([@Adhithpasu](https://github.com/Adhithpasu))
- **Affiliation:** Frisco ISD, TX | AI Club Leader | Class of 2027
- **Model type:** Deep Neural Network (TensorFlow/Keras)
- **Language:** English
- **License:** Apache 2.0
- **Related research:** *"AI's Implications on Student Stress Levels"* β forthcoming publication (expected April 2026)
- **Related prior work:** *"Comparing Vision Transformers and Convolutional Neural Networks: A Systematic Analysis"*, JCSTS Vol. 8(2), January 2026
---
## Intended Uses
**Direct use:**
- Predicting stress risk levels in students based on academic and behavioral features
- Supporting school counselors or ed-tech platforms in early identification of at-risk students
- Research into AI-driven mental health monitoring in educational settings
**Out-of-scope use:**
- Clinical diagnosis of mental health conditions
- Use without informed consent from students
- Deployment in high-stakes decision-making without human oversight
---
## Training Data
The model was trained on a student stress dataset containing features such as:
- Academic performance indicators (GPA, study hours, deadlines)
- Behavioral signals (sleep patterns, extracurricular load)
- Self-reported psychological indicators (anxiety levels, social pressure)
> **Note:** Dataset details and preprocessing steps are documented in the associated research paper.
---
## Evaluation
| Metric | Value |
|-----------|--------|
| Accuracy | TBD |
| F1 Score | TBD |
| Precision | TBD |
| Recall | TBD |
*(Fill in with your actual results before publishing)*
---
## How to Use
```python
import tensorflow as tf
import numpy as np
# Load the model
model = tf.keras.models.load_model("student_stress_model")
# Example input β replace with your actual feature vector
# Features: [study_hours, sleep_hours, gpa, extracurriculars, anxiety_score, ...]
sample_input = np.array([[6.0, 5.5, 3.8, 3, 7]])
# Predict
prediction = model.predict(sample_input)
stress_label = np.argmax(prediction, axis=1)
labels = {0: "Low Stress", 1: "Moderate Stress", 2: "High Stress"}
print(f"Predicted stress level: {labels[stress_label[0]]}")
```
---
## Model Architecture
```
Input Layer β Dense(128, relu) β Dropout(0.3)
β Dense(64, relu) β Dropout(0.2)
β Dense(num_classes, softmax)
```
*(Update this section to match your actual architecture)*
---
## Limitations & Bias
- The model is trained on a specific student population and may not generalize across different demographics, school systems, or cultures.
- Self-reported features are subject to response bias.
- Stress is a complex, multifactorial construct β model predictions should be treated as probabilistic indicators, not ground truth.
---
## Ethical Considerations
Student mental health data is sensitive. This model is intended for research and educational tool development only. Any real-world deployment should:
- Obtain explicit informed consent from students (and guardians for minors)
- Be reviewed by a qualified mental health professional
- Comply with FERPA and applicable data privacy regulations
---
## Citation
If you use this model in your research, please cite:
```bibtex
@misc{pasumarthi2026studentstress,
author = {Chandrasekar Adhithya Pasumarthi},
title = {Student Stress Prediction Model},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/Adhithpasu/student-stress-prediction}
}
```
---
## Contact
- GitHub: [@Adhithpasu](https://github.com/Adhithpasu)
- Research: See linked publication for full methodology and dataset details. |