This application uses Android as the frontend and Python as the backend for face recognition-based attendance management. It involves the use of various technologies, including Python, Flask, TensorFlow, Android, and TensorFlow Lite.
We created this app together to say no to proxy.
The default port for api url is 4040, you can use custom port number by passing an argument python api.py -p 5023
.
pip install virtualenv
python -m venv venv
venv/Scripts/activate.bat # source venv/bin/activate or venv/Scripts/activate.ps1
pip install -r requirements.txt
python generate.py
python train.py
python api.py # or python api.py -p 5001
or
pip3 install virtualenv
python3 -m venv venv
venv/Scripts/activate.bat # source venv/bin/activate or venv/Scripts/activate.ps1
pip3 install -r requirements.txt
python3 generate.py
python3 train.py
python api.py # or python api.py -p 5001