├── README.md ├── calibration_results └── cal.log ├── images ├── logo.png ├── main_vis.png ├── model_vis_main.pdf └── pipeline.png ├── main.py ├── models ├── __pycache__ │ ├── augment_index.cpython-38.pyc │ ├── llama_modelling_aug.cpython-38.pyc │ └── modelling_llama.cpython-38.pyc ├── augment_index.py ├── llama_modelling_aug.py ├── mistral_modelling_aug.py ├── modelling_llama.py └── modelling_mistral.py ├── mt-bench ├── augment_index.py └── gen_model_answer.py ├── requirements.txt ├── scripts ├── calibration.sh └── evaluation.sh └── utils └── data_utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/README.md -------------------------------------------------------------------------------- /calibration_results/cal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/calibration_results/cal.log -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/main_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/images/main_vis.png -------------------------------------------------------------------------------- /images/model_vis_main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/images/model_vis_main.pdf -------------------------------------------------------------------------------- /images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/images/pipeline.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/main.py -------------------------------------------------------------------------------- /models/__pycache__/augment_index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/__pycache__/augment_index.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/llama_modelling_aug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/__pycache__/llama_modelling_aug.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/modelling_llama.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/__pycache__/modelling_llama.cpython-38.pyc -------------------------------------------------------------------------------- /models/augment_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/augment_index.py -------------------------------------------------------------------------------- /models/llama_modelling_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/llama_modelling_aug.py -------------------------------------------------------------------------------- /models/mistral_modelling_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/mistral_modelling_aug.py -------------------------------------------------------------------------------- /models/modelling_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/modelling_llama.py -------------------------------------------------------------------------------- /models/modelling_mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/models/modelling_mistral.py -------------------------------------------------------------------------------- /mt-bench/augment_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/mt-bench/augment_index.py -------------------------------------------------------------------------------- /mt-bench/gen_model_answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/mt-bench/gen_model_answer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/calibration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/scripts/calibration.sh -------------------------------------------------------------------------------- /scripts/evaluation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/scripts/evaluation.sh -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/ACT/HEAD/utils/data_utils.py --------------------------------------------------------------------------------