gitextract_e5o09tfl/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── AGENTS.md ├── ASSUMPTIONS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── README_KL8.md ├── agent_report.md ├── config/ │ └── config.yaml ├── docker-compose.yml ├── docs/ │ ├── api.md │ ├── architecture.md │ ├── decision_record.md │ ├── environment.md │ ├── ops.md │ └── verify.md ├── environment.yml ├── examples/ │ ├── analysis_example.py │ └── quick_start.py ├── requirements.lock.txt ├── requirements.txt ├── scripts/ │ ├── get_data.py │ ├── predict.py │ └── train.py ├── src/ │ ├── __init__.py │ ├── analysis.py │ ├── bootstrap.py │ ├── common.py │ ├── config.py │ ├── data_fetcher.py │ ├── modeling.py │ ├── pipeline.py │ └── preprocessing.py ├── tests/ │ ├── conftest.py │ ├── test_config.py │ ├── test_modeling.py │ ├── test_pipeline.py │ └── test_preprocessing.py └── validation_report.py