├── .gitignore ├── README.md ├── convert-chatgpt-conversation.py ├── inference.py ├── merge_peft_adapters.py ├── qlora.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/README.md -------------------------------------------------------------------------------- /convert-chatgpt-conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/convert-chatgpt-conversation.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/inference.py -------------------------------------------------------------------------------- /merge_peft_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/merge_peft_adapters.py -------------------------------------------------------------------------------- /qlora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/qlora.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzbac/qlora-fine-tune/HEAD/requirements.txt --------------------------------------------------------------------------------