├── .gitignore ├── LICENSE ├── README.md ├── data └── mmlu │ ├── five_shot_mmlu_test.json │ ├── five_shot_mmlu_val.json │ ├── zero_shot_mmlu_test.json │ └── zero_shot_mmlu_val.json ├── gptqlora.py ├── requirements.txt └── scripts ├── finetune.sh └── generate.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/README.md -------------------------------------------------------------------------------- /data/mmlu/five_shot_mmlu_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/data/mmlu/five_shot_mmlu_test.json -------------------------------------------------------------------------------- /data/mmlu/five_shot_mmlu_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/data/mmlu/five_shot_mmlu_val.json -------------------------------------------------------------------------------- /data/mmlu/zero_shot_mmlu_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/data/mmlu/zero_shot_mmlu_test.json -------------------------------------------------------------------------------- /data/mmlu/zero_shot_mmlu_val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/data/mmlu/zero_shot_mmlu_val.json -------------------------------------------------------------------------------- /gptqlora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/gptqlora.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/scripts/finetune.sh -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwopqwop200/gptqlora/HEAD/scripts/generate.sh --------------------------------------------------------------------------------