│ ├── models/ │ │ └── init.py │ ├── schemas/ │ │ └── init.py │ ├── routers/ │ │ ├── auth.py │ │ ├── doctors.py │ │ ├── patients.py │ │ ├── appointments.py ...
. ├── main.py # Application entry point ├── train_model.py # Standalone training script with metrics ├── config.py # Tunable settings (thresholds, camera, paths) ├── requirements.txt ├── models/ │ └── ...