├── .env_sample ├── .gitignore ├── .python-version ├── README.md ├── asset └── overview.png ├── config └── exp_gpu.yaml ├── pyproject.toml ├── run_all.sh ├── src ├── distill.py ├── generate_question.py ├── gptq.py ├── inference_biencoder.py ├── inference_listwise.py ├── inference_listwise_vllm.py ├── split_fold.py ├── train_biencoder.py ├── train_listwise.py └── utils.py └── uv.lock /.env_sample: -------------------------------------------------------------------------------- 1 | OPENROUTER_API_KEY= #required -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/README.md -------------------------------------------------------------------------------- /asset/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/asset/overview.png -------------------------------------------------------------------------------- /config/exp_gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/config/exp_gpu.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/run_all.sh -------------------------------------------------------------------------------- /src/distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/distill.py -------------------------------------------------------------------------------- /src/generate_question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/generate_question.py -------------------------------------------------------------------------------- /src/gptq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/gptq.py -------------------------------------------------------------------------------- /src/inference_biencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/inference_biencoder.py -------------------------------------------------------------------------------- /src/inference_listwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/inference_listwise.py -------------------------------------------------------------------------------- /src/inference_listwise_vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/inference_listwise_vllm.py -------------------------------------------------------------------------------- /src/split_fold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/split_fold.py -------------------------------------------------------------------------------- /src/train_biencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/train_biencoder.py -------------------------------------------------------------------------------- /src/train_listwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/train_listwise.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/src/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebinan92/Eedi-5th-solution/HEAD/uv.lock --------------------------------------------------------------------------------