Llama 3 미세 조정(Fine-Tuning)
Francesca Donadoni
Curriculum Manager, DataCamp










TorchTune 레시피:

pip3 install torchtune
사용 가능한 레시피 나열
tune ls
! IPython 사용 시
!tune ls
!tune ls
RECIPE CONFIG
full_finetune_single_device llama3/8B_full_single_device
llama3_1/8B_full_single_device
llama3_2/1B_full_single_device
llama3_2/3B_full_single_device
full_finetune_distributed llama3/8B_full
llama3_1/8B_full
llama3_2/1B_full
...
--config + 구성 사용파인튜닝 실행
tune run full_finetune_single_device --config \
llama3_1/8B_lora_single_device
매개변수 device=cpu 또는 device=cuda
epochs=<int> (<int>은 0 이상 정수)Llama 3 미세 조정(Fine-Tuning)