├── .gitignore ├── .idea └── .gitignore ├── LICENSE ├── README.md ├── baseline ├── evaluation │ ├── inference.py │ ├── maplm_pretrain_example.json │ ├── maplm_test.json │ ├── run_eval.py │ └── utils.py └── gpt4.py ├── figures ├── example1.png ├── qa1.png └── qa2.png └── tools ├── random_chance.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | data -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/README.md -------------------------------------------------------------------------------- /baseline/evaluation/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/baseline/evaluation/inference.py -------------------------------------------------------------------------------- /baseline/evaluation/maplm_pretrain_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/baseline/evaluation/maplm_pretrain_example.json -------------------------------------------------------------------------------- /baseline/evaluation/maplm_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/baseline/evaluation/maplm_test.json -------------------------------------------------------------------------------- /baseline/evaluation/run_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/baseline/evaluation/run_eval.py -------------------------------------------------------------------------------- /baseline/evaluation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/baseline/evaluation/utils.py -------------------------------------------------------------------------------- /baseline/gpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/baseline/gpt4.py -------------------------------------------------------------------------------- /figures/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/figures/example1.png -------------------------------------------------------------------------------- /figures/qa1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/figures/qa1.png -------------------------------------------------------------------------------- /figures/qa2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/figures/qa2.png -------------------------------------------------------------------------------- /tools/random_chance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/tools/random_chance.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLVM-AD/MAPLM/HEAD/tools/utils.py --------------------------------------------------------------------------------