├── 1_run_train.sh ├── 2_run_eval.sh ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── main_result_234bit.jpg ├── main_result_scaling_law.jpg ├── main_result_ternary.jpg ├── models ├── configuration_llama.py ├── modeling_llama_quant.py └── utils_quant.py ├── requirement.txt ├── train.py └── utils ├── datautils.py ├── process_args.py └── utils.py /1_run_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/1_run_train.sh -------------------------------------------------------------------------------- /2_run_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/2_run_eval.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/README.md -------------------------------------------------------------------------------- /main_result_234bit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/main_result_234bit.jpg -------------------------------------------------------------------------------- /main_result_scaling_law.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/main_result_scaling_law.jpg -------------------------------------------------------------------------------- /main_result_ternary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/main_result_ternary.jpg -------------------------------------------------------------------------------- /models/configuration_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/models/configuration_llama.py -------------------------------------------------------------------------------- /models/modeling_llama_quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/models/modeling_llama_quant.py -------------------------------------------------------------------------------- /models/utils_quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/models/utils_quant.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/requirement.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/train.py -------------------------------------------------------------------------------- /utils/datautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/utils/datautils.py -------------------------------------------------------------------------------- /utils/process_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/utils/process_args.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/ParetoQ/HEAD/utils/utils.py --------------------------------------------------------------------------------