| @echo off | |
| echo Starting RetinaFace Gradio API... | |
| REM Check if model files exist | |
| if not exist "mobilenet0.25_Final.pth" ( | |
| echo Warning: mobilenet0.25_Final.pth not found! | |
| ) | |
| if not exist "Resnet50_Final.pth" ( | |
| echo Warning: Resnet50_Final.pth not found! | |
| ) | |
| REM Start the Gradio app | |
| python app.py | |
| pause | |