Spaces:
Sleeping
Sleeping
| # Exclude everything that is not needed inside the Docker image. | |
| # This keeps the build context small and prevents large data files | |
| # from being sent to the Docker daemon. | |
| # Python virtual environment | |
| venv/ | |
| .venv/ | |
| # nuScenes dataset (large binary data – not needed in the Space) | |
| DataSet/ | |
| # Frontend (deployed separately on Vercel) | |
| frontend/ | |
| node_modules/ | |
| # Training artefacts and legacy scripts | |
| archive/ | |
| log/ | |
| # Byte-compiled / cache files | |
| __pycache__/ | |
| **/__pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Editor and OS artefacts | |
| .git/ | |
| .gitignore | |
| .DS_Store | |
| *.swp | |
| *.swo | |
| # Unused model checkpoints (only the two needed ones are copied explicitly) | |
| models/best_cv_synced_model.pth | |
| models/best_social_model_fusion_smoke.pth | |