durganihantri
commited on
Add files via upload
Browse files
README.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# AI-Child-Behavior-Assessment
|
2 |
+
|
3 |
+
This project is a web-based AI tool designed to analyze children's facial expressions and language development for early mental health assessment.
|
4 |
+
|
5 |
+
## Features
|
6 |
+
- AI-powered **Facial Emotion Detection** using DeepFace
|
7 |
+
- **Speech-to-Text Analysis** for child language development
|
8 |
+
- Flask API for backend processing
|
9 |
+
- Streamlit-based web interface
|
10 |
+
|
11 |
+
## Setup Instructions
|
12 |
+
### 1. Install Required Libraries
|
13 |
+
```bash
|
14 |
+
pip install flask streamlit tensorflow torch torchvision opencv-python numpy pandas speechrecognition deepface transformers
|
15 |
+
```
|
16 |
+
|
17 |
+
### 2. Run the Backend (Flask API)
|
18 |
+
```bash
|
19 |
+
cd backend
|
20 |
+
python app.py
|
21 |
+
```
|
22 |
+
|
23 |
+
### 3. Run the Frontend (Streamlit App)
|
24 |
+
```bash
|
25 |
+
cd frontend
|
26 |
+
streamlit run app_ui.py
|
27 |
+
```
|
28 |
+
|
29 |
+
## Deployment Guide
|
30 |
+
- Backend can be deployed on **Hugging Face Spaces**.
|
31 |
+
- Frontend can be hosted on **Streamlit Cloud** or **Netlify**.
|
32 |
+
|
33 |
+
## License
|
34 |
+
MIT License
|