gitextract_ds3iv5y5/ ├── .gcloudignore ├── .github/ │ └── workflows/ │ └── no-response.yaml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── GEMINI.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── docker-hatch ├── docs/ │ ├── Makefile │ ├── README.md │ ├── competitions.md │ ├── conf.py │ ├── configuration.md │ ├── datasets.md │ ├── datasets_metadata.md │ ├── index.rst │ ├── kernels.md │ ├── kernels_metadata.md │ ├── make.bat │ ├── model_variations.md │ ├── model_variations_versions.md │ ├── models.md │ ├── models_metadata.md │ └── tutorials.md ├── integration_tests/ │ ├── __init__.py │ └── test_models.py ├── pyproject.toml ├── tests/ │ ├── __init__.py │ ├── dataset/ │ │ └── data.csv │ ├── kernel/ │ │ └── testing-x.ipynb │ ├── model/ │ │ └── instance/ │ │ ├── data.csv │ │ └── version/ │ │ └── metadata.json │ ├── sample_submission.csv │ ├── test_commands.sh │ └── unit_tests.py └── tools/ ├── cicd/ │ └── integration-tests.yaml ├── releases/ │ ├── Dockerfile │ ├── cloudbuild.yaml │ ├── requirements.in │ └── requirements.txt ├── use-localhost.sh └── use-prod.sh