PEFT란?PEFT (Parameter-Efficient Fine-Tuning)는 대형 언어 모델(LLM)을 더 적은 리소스로 효율적으로 미세 조정(Fine-Tuning)할 수 있도록 하는 기술입니다.Hugging Face의 peft 라이브러리를 사용하면 LoRA, Prefix Tuning, Adapters 같은 PEFT 기법을 쉽게 적용할 수 있습니다. Hugging Face의 PEFT(🤗 Parameter-Efficient Fine-Tuning) 라이브러리에서 LoRA 지원(https://github.com/huggingface/peft)!pip install -q -U bitsandbytes!pip install -q -U git+https://github.com/huggingface/transf..