├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── collect_mbpp.py ├── collect_nl2bash.py ├── collect_spider.py ├── collect_zeroshot.py ├── collectors.py ├── data.py ├── evaluate.py ├── exec_spider_gold.py ├── execution.py ├── fewshot_reviewer.py ├── multi_exec.py ├── process_sql.py ├── pyminifier_canonicalize.py ├── requirements.txt ├── sample_selectors.py ├── utils.py ├── utils_sql.py └── zeroshot_reviewer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/README.md -------------------------------------------------------------------------------- /collect_mbpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/collect_mbpp.py -------------------------------------------------------------------------------- /collect_nl2bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/collect_nl2bash.py -------------------------------------------------------------------------------- /collect_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/collect_spider.py -------------------------------------------------------------------------------- /collect_zeroshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/collect_zeroshot.py -------------------------------------------------------------------------------- /collectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/collectors.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/data.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/evaluate.py -------------------------------------------------------------------------------- /exec_spider_gold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/exec_spider_gold.py -------------------------------------------------------------------------------- /execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/execution.py -------------------------------------------------------------------------------- /fewshot_reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/fewshot_reviewer.py -------------------------------------------------------------------------------- /multi_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/multi_exec.py -------------------------------------------------------------------------------- /process_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/process_sql.py -------------------------------------------------------------------------------- /pyminifier_canonicalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/pyminifier_canonicalize.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/sample_selectors.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/utils.py -------------------------------------------------------------------------------- /utils_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/utils_sql.py -------------------------------------------------------------------------------- /zeroshot_reviewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/coder_reviewer_reranking/HEAD/zeroshot_reviewer.py --------------------------------------------------------------------------------