Spaces:
Runtime error
Runtime error
| ObjectDetectionProject/ | |
| βββ app/ | |
| β βββ __init__.py | |
| β βββ detector.py # YOLO detection logic | |
| β βββ api.py # REST API endpoints | |
| β βββ security.py # Auth, rate limiting, validation | |
| β βββ database.py # Data persistence | |
| β βββ config.py # Configuration management | |
| β βββ models.py # Data models | |
| βββ gui/ | |
| β βββ __init__.py | |
| β βββ main_window.py # Tkinter GUI | |
| β βββ utils.py # GUI utilities | |
| βββ tests/ | |
| β βββ test_api.py | |
| β βββ test_detector.py | |
| β βββ test_security.py | |
| βββ deployment/ | |
| β βββ Dockerfile | |
| β βββ docker-compose.yml | |
| β βββ nginx.conf | |
| β βββ gunicorn.conf.py | |
| βββ scripts/ | |
| β βββ train_custom.py # Custom model training | |
| β βββ export_onnx.py # Model export for deployment | |
| βββ requirements.txt | |
| βββ README.md | |
| βββ .env.example | |