Ch3. Fine-tuning a model with the Trainer API
1. Introduction
1.1. Fine-tuning이란?
2. Processing the data
2.1. Loading a dataset from the Hub
!pip install datasetsfrom datasets import load_dataset
raw_datasets = load_dataset("glue", "mrpc")
raw_datasets2.2. Preprocessing a dataset
2.3. Dynamic padding
3. Fine-tuning a model with the Trainer API
3.1. Training
3.2. Evaluation
4. A full training
4.1. Training loop
4.2. Evaluation loop
4. Accelerate ✔
관련소스 Link
Last updated