1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to LLMs in Python

Connected

Exercise

Setting up training arguments

After tokenizing your customer support interactions, you need to set up your training arguments before you can fine-tuned a pre-trained model.

TrainingArguments has been loaded for you.

Instructions

100 XP
  • Set up an instance of TrainingArguments().
  • Set the evaluation strategy as "epoch".
  • Specify three training epochs.
  • Set the batch sizes for both training and evaluation as three.