aditya-g07's picture
Deploy RetinaFace face detection API with Gradio SDK
b10b0ba
raw
history blame contribute delete
311 Bytes
@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