A data scientist wants to fine-tune a Llama 2 7B model using SageMaker for a text summarization task. The dataset is 10 GB. The budget is limited, so cost efficiency is important. Which THREE steps should the data scientist take? (Choose THREE.)
LoRA enables efficient fine-tuning with much lower memory requirements.
Why this answer
LoRA reduces trainable parameters, enabling fine-tuning on smaller instances. HuggingFace estimator is the standard for HF models. Spot instances reduce cost.
DeepSpeed ZeRO-3 is for large models but not necessary with LoRA. BYOC is overkill.