This project is an Elderly Human Recognition System.Human Activity Recognition 70+ (HAR70+) dataset is a professionally-annotated dataset containing 18 fit-to-frail older-adult subjects (70-95 years old) wearing two 3-axial accelerometers for around 40 minutes during a semi-structured free-living protocol. The sensors were attached to the right thigh and lower back. The Project designed to handle the uploading of files of patients data , stop predictions, and retrieve results through a web interface. The system uses Flask for the backend and HTML/CSS with JavaScript for the frontend.
Clone the repository:
```bash
git clone https://github.com/HaroonMalik771/Human_activity_recognition_system.git
```
Create a virtual environment and activate it:
bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
Install the required packages:
bash
pip install -r requirements.txt
Run the Flask application:
bash
python app.py
Open your web browser and go to http://127.0.0.1:5000/
.
project-root/
│
├── models/
│ └── lstm_model.h5 # Saved LSTM model
│
├── test_data/
│ └── new.csv # Example test data file
│
├── web/
│ ├── static/
│ │ └── images/
│ │ └── Screenshot.png # Placeholder image
│ │
│ ├── templates/
│ │ ├── index.html # HTML template for main interface
│ │ └── results.html # HTML template for results page
│ │
│ ├── app.py # Main Flask application
│ └── requirements.txt # List of Python packages required
│
└── README.md # Project README file