{ "cells": [ { "cell_type": "markdown", "id": "75b58048-7d14-4fc6-8085-1fc08c81b4a6", "metadata": {}, "source": [ "# Fine-Tune Whisper With πŸ€— Transformers and Streaming Mode" ] }, { "cell_type": "markdown", "id": "fbfa8ad5-4cdc-4512-9058-836cbbf65e1a", "metadata": {}, "source": [ "In this Colab, we present a step-by-step guide on fine-tuning Whisper with Hugging Face πŸ€— Transformers on 400 hours of speech data! Using streaming mode, we'll show how you can train a speech recongition model on any dataset, irrespective of size. With streaming mode, storage requirements are no longer a consideration: you can train a model on whatever dataset you want, even if it's download size exceeds your devices disk space. How can this be possible? It simply seems too good to be true! Well, rest assured it's not πŸ˜‰ Carry on reading to find out more." ] }, { "cell_type": "markdown", "id": "afe0d503-ae4e-4aa7-9af4-dbcba52db41e", "metadata": {}, "source": [ "## Introduction" ] }, { "cell_type": "markdown", "id": "9ae91ed4-9c3e-4ade-938e-f4c2dcfbfdc0", "metadata": {}, "source": [ "Speech recognition datasets are large. A typical speech dataset consists of approximately 100 hours of audio-transcription data, requiring upwards of 130GB of storage space for download and preparation. For most ASR researchers, this is already at the upper limit of what is feasible for disk space. So what happens when we want to train on a larger dataset? The full [LibriSpeech](https://huggingface.co/datasets/librispeech_asr) dataset consists of 960 hours of audio data. Kensho's [SPGISpeech](https://huggingface.co/datasets/kensho/spgispeech) contains 5,000 hours of audio data. ML Commons [People's Speech](https://huggingface.co/datasets/MLCommons/peoples_speech) contains **30,000+** hours of audio data! Do we need to bite the bullet and buy additional storage? Or is there a way we can train on all of these datasets with no disk drive requirements?\n", "\n", "When training machine learning systems, we rarely use the entire dataset at once. We typically _batch_ our data into smaller subsets of data, and pass these incrementally through our training pipeline. This is because we train our system on an accelerator device, such as a GPU or TPU, which has a memory limit typically around 16GB. We have to fit our model, optimiser and training data all on the same accelerator device, so we usually have to divide the dataset up into smaller batches and move them from the CPU to the GPU when required.\n", "\n", "Consequently, we don't require the entire dataset to be downloaded at once; we simply need the batch of data that we pass to our model at any one go. We can leverage this principle of partial dataset loading when preparing our dataset: rather than downloading the entire dataset at the start, we can load each piece of data as and when we need it. For each batch, we load the relevant data from a remote server and pass it through the training pipeline. For the next batch, we load the next items and again pass them through the training pipeline. At no point do we have to save data to our disk drive, we simply load them in memory and use them in our pipeline. In doing so, we only ever need as much memory as each individual batch requires.\n", "\n", "This is analogous to downloading a TV show versus streaming it πŸ“Ί When we download a TV show, we download the entire video offline and save it to our disk. Compare this to when we stream a TV show. Here, we don't download any part of the video to memory, but iterate over the video file and load each part in real-time as required. It's this same principle that we can apply to our ML training pipeline! We want to iterate over the dataset and load each sample of data as required.\n", "\n", "While the principle of partial dataset loading sounds ideal, it also seems **pretty** difficult to do. Luckily for us, πŸ€— Datasets allows us to do this with minimal code changes! We'll make use of the principle of [_streaming_](https://huggingface.co/docs/datasets/stream), depicted graphically in Figure 1. Streaming does exactly this: the data is loaded progressively as we iterate over the dataset, meaning it is only loaded as and when we need it. If you're familiar with πŸ€— Transformers and Datasets, the content of this notebook will be very familiar, with some small extensions to support streaming mode." ] }, { "cell_type": "markdown", "id": "1c87f76e-47be-4a5d-bc52-7b1c2e9d4f5a", "metadata": {}, "source": [ "
\n", "\"Trulli\"\n", "
Figure 1: Streaming mode. The dataset is divided into smaller subsets, with subsets loaded progressively as we iterate over the dataset.
\n", "
" ] }, { "cell_type": "markdown", "id": "21b6316e-8a55-4549-a154-66d3da2ab74a", "metadata": {}, "source": [ "This notebook provides a guide to fine-tuning on the task of _speech recognition_, which involves learning a\n", "mapping from speech to text. Speech recognition is divided into two categories: English-only or multilingual (all other languages). \n", "This notebook applies to both categories, with pointers for changing between languages and datasets.\n", "\n", "As for our model, we'll fine-tune the Whisper model released in [September 2022](https://openai.com/blog/whisper/) by the authors \n", "Alec Radford et al. from OpenAI. Whisper is an encoder-decoder model pre-trained on 680k hours of labelled audio-transcription data. \n", "It achieves strong performance on many speech recognition and speech translation datasets without fine-tuning. With fine-tuning, \n", "we aim to improve upon these results further, with many SoTA results up for grabs! For a full explanation on the Whisper model, the \n", "reader is advised to read the blog post [Fine-Tune Whisper with πŸ€— Transformers](https://huggingface.co/blog/fine-tune-whisper#introduction).\n", "\n", "The Whisper checkpoints come in five configurations of varying model sizes.\n", "The smallest four are trained on either English-only or multilingual data.\n", "The largest checkpoint is multilingual only. All nine of the pre-trained checkpoints \n", "are available on the [Hugging Face Hub](https://huggingface.co/models?search=openai/whisper). The \n", "checkpoints are summarised in the following table with links to the models on the Hub:\n", "\n", "| Size | Layers | Width | Heads | Parameters | English-only | Multilingual |\n", "|--------|--------|-------|-------|------------|------------------------------------------------------|---------------------------------------------------|\n", "| tiny | 4 | 384 | 6 | 39 M | [βœ“](https://huggingface.co/openai/whisper-tiny.en) | [βœ“](https://huggingface.co/openai/whisper-tiny.) |\n", "| base | 6 | 512 | 8 | 74 M | [βœ“](https://huggingface.co/openai/whisper-base.en) | [βœ“](https://huggingface.co/openai/whisper-base) |\n", "| small | 12 | 768 | 12 | 244 M | [βœ“](https://huggingface.co/openai/whisper-small.en) | [βœ“](https://huggingface.co/openai/whisper-small) |\n", "| medium | 24 | 1024 | 16 | 769 M | [βœ“](https://huggingface.co/openai/whisper-medium.en) | [βœ“](https://huggingface.co/openai/whisper-medium) |\n", "| large | 32 | 1280 | 20 | 1550 M | x | [βœ“](https://huggingface.co/openai/whisper-large) |\n", "\n", "When fine-tuning on an English dataset for speech recognition, it is recommeneded to select one of the English-only checkpoints. For any other language, it is recommended to select a multilingual checkpoint.\n", "\n", "For demonstration purposes, we'll fine-tune the multilingual version of the \n", "[`\"small\"`](https://huggingface.co/openai/whisper-small) checkpoint with 244M params (~= 1GB). \n", "As for our data, we'll train and evaluate our system on 400 hours of multilingual speech recognition data\n", "taken from the [Common Voice 11](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0)\n", "dataset. We'll show how we can train a model on 400 hours of training data using the default disk space \n", "that comes with a standard GPU device or Google Colab." ] }, { "cell_type": "markdown", "id": "b219c9dd-39b6-4a95-b2a1-3f547a1e7bc0", "metadata": {}, "source": [ "## Load Dataset with Streaming" ] }, { "cell_type": "markdown", "id": "b17a4763-4381-4157-ae38-b04a8b5f1c43", "metadata": {}, "source": [ "This is where the magic happens! We'll first write a wrapper function around πŸ€— Datasets `load_dataset` method. This function downloads the required splits using streaming mode by forcing `streaming=True` in the `load_dataset` method. Multiple splits can be combined (interleaved) by concatenating them with the \"+\" symbol when specifying the split name, e.g. `split=train+validation` will return a single split with the training and validation splits interleaved together. The function has the same arguments and key-word arguments as πŸ€— Datasets `load_dataset` method, so we can use it in exactly the same way!" ] }, { "cell_type": "code", "execution_count": 1, "id": "065a8cf7-e54f-4ac3-900e-609c80714fca", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/ubuntu/.local/lib/python3.8/site-packages/pandas/core/computation/expressions.py:20: UserWarning: Pandas requires version '2.7.3' or newer of 'numexpr' (version '2.7.1' currently installed).\n", " from pandas.core.computation.check import NUMEXPR_INSTALLED\n" ] } ], "source": [ "from datasets import interleave_datasets, load_dataset\n", "\n", "def load_streaming_dataset(dataset_name, dataset_config_name, split, **kwargs):\n", " if \"+\" in split:\n", " # load multiple splits separated by the `+` symbol *with* streaming mode\n", " dataset_splits = [load_dataset(dataset_name, dataset_config_name, split=split_name, streaming=True, **kwargs) for split_name in split.split(\"+\")]\n", " # interleave multiple splits to form one dataset\n", " interleaved_dataset = interleave_datasets(dataset_splits)\n", " return interleaved_dataset\n", " else:\n", " # load a single split *with* streaming mode\n", " dataset = load_dataset(dataset_name, dataset_config_name, split=split, streaming=True, **kwargs)\n", " return dataset" ] }, { "cell_type": "markdown", "id": "674429c5-0ab4-4adf-975b-621bb69eca38", "metadata": {}, "source": [ "We'll train our system on the Spanish split of [Common Voice 11](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0). We can see how much training data we have by viewing the [language page](https://commonvoice.mozilla.org/en/datasets) on the Common Voice website. The Spanish split has over 400 hours of labelled training data - that's enourmous! More than we could ever fit on a Google Colab or a standard workstation. But with streaming mode, we'll only download data as and when we need it, making training on this dataset possible!\n", "\n", "Since Spanish is relatively high-resource, we'll only use the `train` split for training and the `test` split for evaluation. If you're training on a low-resource language, such as the Hindi split of Common Voice 11, it's worth combining the `train` and `validation` splits to give a larger training set. You can achieve this by setting: `split=\"train+validation\"` for the training split.\n", "\n", "If you're using a gated dataset, like Common Voice 11, ensure you have accepted the terms of use on the Hugging Face Hub: [mozilla-foundation/common_voice_11_0](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0). Once you have accepted the terms, you will have full access to the dataset and be able to load the data locally." ] }, { "cell_type": "code", "execution_count": 2, "id": "a2787582-554f-44ce-9f38-4180a5ed6b44", "metadata": {}, "outputs": [], "source": [ "from datasets import IterableDatasetDict\n", "\n", "raw_datasets = IterableDatasetDict()\n", "\n", "raw_datasets[\"train\"] = load_streaming_dataset(\"mozilla-foundation/common_voice_11_0\", \"lt\", split=\"train\", use_auth_token=True) # set split=\"train+validation\" for low-resource\n", "raw_datasets[\"test\"] = load_streaming_dataset(\"mozilla-foundation/common_voice_11_0\", \"lt\", split=\"test\", use_auth_token=True)" ] }, { "cell_type": "markdown", "id": "2d63b2d2-f68a-4d74-b7f1-5127f6d16605", "metadata": {}, "source": [ "## Prepare Processor and Pre-Process Data" ] }, { "cell_type": "markdown", "id": "601c3099-1026-439e-93e2-5635b3ba5a73", "metadata": {}, "source": [ "The ASR pipeline can be de-composed into three stages: \n", "1) A feature extractor which pre-processes the raw audio-inputs\n", "2) The model which performs the sequence-to-sequence mapping \n", "3) A tokenizer which post-processes the model outputs to text format\n", "\n", "In πŸ€— Transformers, the Whisper model has an associated feature extractor and tokenizer, \n", "called [WhisperFeatureExtractor](https://huggingface.co/docs/transformers/main/model_doc/whisper#transformers.WhisperFeatureExtractor)\n", "and [WhisperTokenizer](https://huggingface.co/docs/transformers/main/model_doc/whisper#transformers.WhisperTokenizer) \n", "respectively. To make our lives simple, these two objects are wrapped under a single class, called the [WhisperProcessor](https://huggingface.co/docs/transformers/model_doc/whisper#transformers.WhisperProcessor). We can call the WhisperProcessor to perform \n", "both the audio pre-processing and the text token post-processing. In doing so, we only need to keep track of two objects during training: \n", "the `processor` and the `model`.\n", "\n", "If using a multilingual checkpoint, you should set the `\"language\"` to your target text language. You should also set the task to `\"transcribe\"` for speech recogntition and `\"translate\"` for speech translation. These arguments modify the behaviour of the tokenizer - they should be set correctly to ensure the target labels are encoded properly. These arguments should be omitted for English-only fine-tuning." ] }, { "cell_type": "code", "execution_count": 3, "id": "77d9f0c5-8607-4642-a8ac-c3ab2e223ea6", "metadata": {}, "outputs": [], "source": [ "from transformers import WhisperProcessor\n", "\n", "processor = WhisperProcessor.from_pretrained(\"openai/whisper-small\", language=\"Lithuanian\", task=\"transcribe\")" ] }, { "cell_type": "markdown", "id": "381acd09-0b0f-4d04-9eb3-f028ac0e5f2c", "metadata": {}, "source": [ "### Pre-Process Data" ] }, { "cell_type": "markdown", "id": "bf10cd3e-924e-44fc-8790-46e413de7b3d", "metadata": {}, "source": [ "Let's have a look at the dataset features. Pay particular attention to the `\"audio\"` column - this details the sampling rate of our audio inputs:" ] }, { "cell_type": "code", "execution_count": 4, "id": "ab5a13b4-9bd4-4aa0-aef2-b3de9b762988", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'client_id': Value(dtype='string', id=None),\n", " 'path': Value(dtype='string', id=None),\n", " 'audio': Audio(sampling_rate=48000, mono=True, decode=True, id=None),\n", " 'sentence': Value(dtype='string', id=None),\n", " 'up_votes': Value(dtype='int64', id=None),\n", " 'down_votes': Value(dtype='int64', id=None),\n", " 'age': Value(dtype='string', id=None),\n", " 'gender': Value(dtype='string', id=None),\n", " 'accent': Value(dtype='string', id=None),\n", " 'locale': Value(dtype='string', id=None),\n", " 'segment': Value(dtype='string', id=None)}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "raw_datasets[\"train\"].features" ] }, { "cell_type": "markdown", "id": "5a679f05-063d-41b3-9b58-4fc9c6ccf4fd", "metadata": {}, "source": [ "Since our input audio is sampled at 48kHz, we need to _downsample_ it to\n", "16kHz prior to passing it to the Whisper feature extractor, 16kHz being the sampling rate expected by the Whisper model. \n", "\n", "We'll set the audio inputs to the correct sampling rate using dataset's \n", "[`cast_column`](https://huggingface.co/docs/datasets/package_reference/main_classes.html?highlight=cast_column#datasets.DatasetDict.cast_column)\n", "method. This operation does not change the audio in-place, \n", "but rather signals to `datasets` to resample audio samples _on the fly_ the \n", "first time that they are loaded:" ] }, { "cell_type": "code", "execution_count": 5, "id": "3ab6a724-3d1e-478b-a9e9-d2f85feb6c39", "metadata": {}, "outputs": [], "source": [ "from datasets import Audio\n", "\n", "raw_datasets = raw_datasets.cast_column(\"audio\", Audio(sampling_rate=16000))" ] }, { "cell_type": "markdown", "id": "161322c2-94f3-4d26-9e1d-d9d5202ca3cf", "metadata": {}, "source": [ "We'll define our pre-processing strategy. We advise that you **do not** lower-case the transcriptions or remove punctuation unless mixing different datasets. This will enable you to fine-tune Whisper models that can predict punctuation and casing. Later, you will see how we can evaluate the predictions without punctuation or casing, so that the models benefit from the WER improvement obtained by normalising the transcriptions while still predicting fully formatted transcriptions." ] }, { "cell_type": "code", "execution_count": 6, "id": "d041650e-1c48-4439-87b3-5b6f4a514107", "metadata": {}, "outputs": [], "source": [ "from transformers.models.whisper.english_normalizer import BasicTextNormalizer\n", "\n", "do_lower_case = False\n", "do_remove_punctuation = False\n", "\n", "normalizer = BasicTextNormalizer()" ] }, { "cell_type": "markdown", "id": "bfaa935b-a11d-497c-88c1-0c4d1bb3247b", "metadata": {}, "source": [ "Now we can write a function to prepare our data ready for the model:\n", "1. We load and resample the audio data by calling `batch[\"audio\"]`. As explained above, πŸ€— Datasets performs any necessary resampling operations on the fly.\n", "2. We use the feature extractor to compute the log-Mel spectrogram input features from our 1-dimensional audio array.\n", "3. We perform any optional pre-processing (lower-case or remove punctuation).\n", "4. We encode the transcriptions to label ids through the use of the tokenizer." ] }, { "cell_type": "code", "execution_count": 7, "id": "c085911c-a10a-41ef-8874-306e0503e9bb", "metadata": {}, "outputs": [], "source": [ "def prepare_dataset(batch):\n", " # load and (possibly) resample audio data to 16kHz\n", " audio = batch[\"audio\"]\n", "\n", " # compute log-Mel input features from input audio array \n", " batch[\"input_features\"] = processor.feature_extractor(audio[\"array\"], sampling_rate=audio[\"sampling_rate\"]).input_features[0]\n", " # compute input length of audio sample in seconds\n", " batch[\"input_length\"] = len(audio[\"array\"]) / audio[\"sampling_rate\"]\n", " \n", " # optional pre-processing steps\n", " transcription = batch[\"sentence\"]\n", " if do_lower_case:\n", " transcription = transcription.lower()\n", " if do_remove_punctuation:\n", " transcription = normalizer(transcription).strip()\n", " \n", " # encode target text to label ids\n", " batch[\"labels\"] = processor.tokenizer(transcription).input_ids\n", " return batch" ] }, { "cell_type": "markdown", "id": "70b319fb-2439-4ef6-a70d-a47bf41c4a13", "metadata": {}, "source": [ "We can apply the data preparation function to all of our training examples using πŸ€— Datasets' `.map` method. We'll remove all of the columns from the raw training data, leaving just the `input_features` and `labels` defined in the `prepare_dataset` function:" ] }, { "cell_type": "code", "execution_count": 8, "id": "a37a7cdb-9013-427f-8de9-6a8d0e9dc684", "metadata": {}, "outputs": [], "source": [ "vectorized_datasets = raw_datasets.map(prepare_dataset, remove_columns=list(next(iter(raw_datasets.values())).features)).with_format(\"torch\")" ] }, { "cell_type": "markdown", "id": "3d59b37e-4950-47ec-9e3e-2cf2ec7fc750", "metadata": {}, "source": [ "We can now define how we shuffle the data in the train split. The size of the subset we load is set by the variable `buffer_size`. You can increase or decrease this depending on your memory constraints. In this example, the `buffer_size` is set to 500, meaning 500 samples are loaded before shuffling across the subset. The larger we set this value, the closer to True offline shuffling. The `seed` is set for reproducibility:" ] }, { "cell_type": "code", "execution_count": 9, "id": "1b145699-acfc-4b1d-93a2-a2ad3d62674c", "metadata": {}, "outputs": [], "source": [ "vectorized_datasets[\"train\"] = vectorized_datasets[\"train\"].shuffle(\n", " buffer_size=500,\n", " seed=0,\n", ")" ] }, { "cell_type": "markdown", "id": "666b9ef0-7909-4e1e-a419-87604d233e29", "metadata": {}, "source": [ "Finally, we filter any training data with audio samples longer than 30s. These samples would otherwise be truncated by the Whisper feature-extractor which could affect the stability of training. We define a function that returns `True` for samples that are less than 30s, and `False` for those that are longer:" ] }, { "cell_type": "code", "execution_count": 10, "id": "01cb25ef-4bb0-4325-9461-f59198acadf6", "metadata": {}, "outputs": [], "source": [ "max_input_length = 30.0\n", "\n", "def is_audio_in_length_range(length):\n", " return length < max_input_length" ] }, { "cell_type": "markdown", "id": "28e37ac3-b1c5-465b-8586-7cfd8d76b0f1", "metadata": {}, "source": [ "We apply our filter function to all samples of our training dataset through πŸ€— Datasets' `.filter` method:" ] }, { "cell_type": "code", "execution_count": 11, "id": "333f7f6e-6053-4d3b-8924-c733c79b82ac", "metadata": {}, "outputs": [], "source": [ "vectorized_datasets[\"train\"] = vectorized_datasets[\"train\"].filter(\n", " is_audio_in_length_range,\n", " input_columns=[\"input_length\"],\n", ")" ] }, { "cell_type": "markdown", "id": "263a5a58-0239-4a25-b0df-c625fc9c5810", "metadata": {}, "source": [ "## Training and Evaluation" ] }, { "cell_type": "markdown", "id": "a693e768-c5a6-453f-89a1-b601dcf7daf7", "metadata": {}, "source": [ "Now that we've prepared our data, we're ready to dive into the training pipeline. \n", "The [πŸ€— Trainer](https://huggingface.co/transformers/master/main_classes/trainer.html?highlight=trainer)\n", "will do much of the heavy lifting for us. All we have to do is:\n", "\n", "- Define a data collator: the data collator takes our pre-processed data and prepares PyTorch tensors ready for the model.\n", "\n", "- Evaluation metrics: during evaluation, we want to evaluate the model using the [word error rate (WER)](https://huggingface.co/metrics/wer) metric. We need to define a `compute_metrics` function that handles this computation.\n", "\n", "- Load a pre-trained checkpoint: we need to load a pre-trained checkpoint and configure it correctly for training.\n", "\n", "- Define the training configuration: this will be used by the πŸ€— Trainer to define the training schedule." ] }, { "cell_type": "markdown", "id": "8d230e6d-624c-400a-bbf5-fa660881df25", "metadata": {}, "source": [ "### Define a Data Collator" ] }, { "cell_type": "markdown", "id": "04def221-0637-4a69-b242-d3f0c1d0ee78", "metadata": {}, "source": [ "The data collator for a sequence-to-sequence speech model is unique in the sense that it \n", "treats the `input_features` and `labels` independently: the `input_features` must be \n", "handled by the feature extractor and the `labels` by the tokenizer.\n", "\n", "The `input_features` are already padded to 30s and converted to a log-Mel spectrogram \n", "of fixed dimension by action of the feature extractor, so all we have to do is convert the `input_features`\n", "to batched PyTorch tensors. We do this using the feature extractor's `.pad` method with `return_tensors=pt`.\n", "\n", "The `labels` on the other hand are un-padded. We first pad the sequences\n", "to the maximum length in the batch using the tokenizer's `.pad` method. The padding tokens \n", "are then replaced by `-100` so that these tokens are **not** taken into account when \n", "computing the loss. We then cut the BOS token from the start of the label sequence as we \n", "append it later during training.\n", "\n", "We can leverage the `WhisperProcessor` we defined earlier to perform both the \n", "feature extractor and the tokenizer operations:" ] }, { "cell_type": "code", "execution_count": 12, "id": "8326221e-ec13-4731-bb4e-51e5fc1486c5", "metadata": {}, "outputs": [], "source": [ "import torch\n", "\n", "from dataclasses import dataclass\n", "from typing import Any, Dict, List, Union\n", "\n", "@dataclass\n", "class DataCollatorSpeechSeq2SeqWithPadding:\n", " processor: Any\n", "\n", " def __call__(self, features: List[Dict[str, Union[List[int], torch.Tensor]]]) -> Dict[str, torch.Tensor]:\n", " # split inputs and labels since they have to be of different lengths and need different padding methods\n", " # first treat the audio inputs by simply returning torch tensors\n", " input_features = [{\"input_features\": feature[\"input_features\"]} for feature in features]\n", " batch = self.processor.feature_extractor.pad(input_features, return_tensors=\"pt\")\n", "\n", " # get the tokenized label sequences\n", " label_features = [{\"input_ids\": feature[\"labels\"]} for feature in features]\n", " # pad the labels to max length\n", " labels_batch = self.processor.tokenizer.pad(label_features, return_tensors=\"pt\")\n", "\n", " # replace padding with -100 to ignore loss correctly\n", " labels = labels_batch[\"input_ids\"].masked_fill(labels_batch.attention_mask.ne(1), -100)\n", "\n", " # if bos token is appended in previous tokenization step,\n", " # cut bos token here as it's append later anyways\n", " if (labels[:, 0] == self.processor.tokenizer.bos_token_id).all().cpu().item():\n", " labels = labels[:, 1:]\n", "\n", " batch[\"labels\"] = labels\n", "\n", " return batch" ] }, { "cell_type": "markdown", "id": "3cae7dbf-8a50-456e-a3a8-7fd005390f86", "metadata": {}, "source": [ "Let's initialise the data collator we've just defined:" ] }, { "cell_type": "code", "execution_count": 13, "id": "fc834702-c0d3-4a96-b101-7b87be32bf42", "metadata": {}, "outputs": [], "source": [ "data_collator = DataCollatorSpeechSeq2SeqWithPadding(processor=processor)" ] }, { "cell_type": "markdown", "id": "d62bb2ab-750a-45e7-82e9-61d6f4805698", "metadata": {}, "source": [ "### Evaluation Metrics" ] }, { "cell_type": "markdown", "id": "66fee1a7-a44c-461e-b047-c3917221572e", "metadata": {}, "source": [ "We'll use the word error rate (WER) metric, the 'de-facto' metric for assessing \n", "ASR systems. For more information, refer to the WER [docs](https://huggingface.co/metrics/wer). We'll load the WER metric from πŸ€— Evaluate:" ] }, { "cell_type": "code", "execution_count": 14, "id": "b22b4011-f31f-4b57-b684-c52332f92890", "metadata": {}, "outputs": [], "source": [ "import evaluate\n", "\n", "metric = evaluate.load(\"wer\")" ] }, { "cell_type": "markdown", "id": "509f96d7-3f11-4f37-add9-f74a0c44f3fc", "metadata": {}, "source": [ "We then simply have to define a function that takes our model \n", "predictions and returns the WER metric. This function, called\n", "`compute_metrics`, first replaces `-100` with the `pad_token_id`\n", "in the `label_ids` (undoing the step we applied in the \n", "data collator to ignore padded tokens correctly in the loss).\n", "It then decodes the predicted and label ids to strings. Finally,\n", "it computes the WER between the predictions and reference labels. \n", "Here, we have the option of evaluating with the 'normalised' transcriptions \n", "and predictions. We recommend you set this to `True` to benefit from the WER \n", "improvement obtained by normalising the transcriptions." ] }, { "cell_type": "code", "execution_count": 15, "id": "a11d1bfc-9e28-460f-a287-72d8f7bc1acb", "metadata": {}, "outputs": [], "source": [ "#Β evaluate with the 'normalised' WER\n", "do_normalize_eval = True\n", "\n", "def compute_metrics(pred):\n", " pred_ids = pred.predictions\n", " label_ids = pred.label_ids\n", "\n", " # replace -100 with the pad_token_id\n", " label_ids[label_ids == -100] = processor.tokenizer.pad_token_id\n", "\n", " # we do not want to group tokens when computing the metrics\n", " pred_str = processor.tokenizer.batch_decode(pred_ids, skip_special_tokens=True)\n", " label_str = processor.tokenizer.batch_decode(label_ids, skip_special_tokens=True)\n", "\n", " if do_normalize_eval:\n", " pred_str = [normalizer(pred) for pred in pred_str]\n", " label_str = [normalizer(label) for label in label_str]\n", " # filtering step to only evaluate the samples that correspond to non-zero references:\n", " pred_str = [pred_str[i] for i in range(len(pred_str)) if len(label_str[i]) > 0]\n", " label_str = [label_str[i] for i in range(len(label_str)) if len(label_str[i]) > 0]\n", "\n", " wer = 100 * metric.compute(predictions=pred_str, references=label_str)\n", "\n", " return {\"wer\": wer}" ] }, { "cell_type": "markdown", "id": "daf2a825-6d9f-4a23-b145-c37c0039075b", "metadata": {}, "source": [ "###Β Load a Pre-Trained Checkpoint" ] }, { "cell_type": "markdown", "id": "437a97fa-4864-476b-8abc-f28b8166cfa5", "metadata": {}, "source": [ "Now let's load the pre-trained Whisper `small` checkpoint. Again, this \n", "is trivial through use of πŸ€— Transformers!" ] }, { "cell_type": "code", "execution_count": 16, "id": "5a10cc4b-07ec-4ebd-ac1d-7c601023594f", "metadata": {}, "outputs": [], "source": [ "from transformers import WhisperForConditionalGeneration\n", "\n", "model = WhisperForConditionalGeneration.from_pretrained(\"openai/whisper-small\")" ] }, { "cell_type": "markdown", "id": "a15ead5f-2277-4a39-937b-585c2497b2df", "metadata": {}, "source": [ "Override generation arguments - no tokens are forced as decoder outputs (see [`forced_decoder_ids`](https://huggingface.co/docs/transformers/main_classes/text_generation#transformers.generation_utils.GenerationMixin.generate.forced_decoder_ids)), no tokens are suppressed during generation (see [`suppress_tokens`](https://huggingface.co/docs/transformers/main_classes/text_generation#transformers.generation_utils.GenerationMixin.generate.suppress_tokens)). Set `use_cache` to False since we're using gradient checkpointing, and the two are incompatible:" ] }, { "cell_type": "code", "execution_count": 17, "id": "62038ba3-88ed-4fce-84db-338f50dcd04f", "metadata": {}, "outputs": [], "source": [ "model.config.forced_decoder_ids = None\n", "model.config.suppress_tokens = []\n", "model.config.use_cache = False" ] }, { "cell_type": "markdown", "id": "2178dea4-80ca-47b6-b6ea-ba1915c90c06", "metadata": {}, "source": [ "### Define the Training Configuration" ] }, { "cell_type": "markdown", "id": "c21af1e9-0188-4134-ac82-defc7bdcc436", "metadata": {}, "source": [ "In the final step, we define all the parameters related to training. Here, you can set the `max_steps` to train for longer. For more detail on the training arguments, refer to the Seq2SeqTrainingArguments [docs](https://huggingface.co/docs/transformers/main_classes/trainer#transformers.Seq2SeqTrainingArguments)." ] }, { "cell_type": "code", "execution_count": 18, "id": "0ae3e9af-97b7-4aa0-ae85-20b23b5bcb3a", "metadata": {}, "outputs": [], "source": [ "from transformers import Seq2SeqTrainingArguments\n", "\n", "training_args = Seq2SeqTrainingArguments(\n", " output_dir=\"./\",\n", " per_device_train_batch_size=32,\n", " gradient_accumulation_steps=1, # increase by 2x for every 2x decrease in batch size\n", " learning_rate=1e-5,\n", " warmup_steps=500,\n", " max_steps=5000,\n", " gradient_checkpointing=True,\n", " fp16=True,\n", " evaluation_strategy=\"steps\",\n", " per_device_eval_batch_size=8,\n", " predict_with_generate=True,\n", " generation_max_length=225,\n", " save_steps=1000,\n", " eval_steps=1000,\n", " logging_steps=25,\n", " report_to=[\"tensorboard\"],\n", " load_best_model_at_end=True,\n", " metric_for_best_model=\"wer\",\n", " greater_is_better=False,\n", " push_to_hub=True,\n", ")" ] }, { "cell_type": "markdown", "id": "b3a944d8-3112-4552-82a0-be25988b3857", "metadata": {}, "source": [ "**Note**: if one does not want to upload the model checkpoints to the Hub, \n", "set `push_to_hub=False`." ] }, { "cell_type": "markdown", "id": "393c883e-3e50-492c-bd58-f51dbf15ee56", "metadata": {}, "source": [ "We then define a custom [Callback](https://huggingface.co/docs/transformers/main_classes/callback) that is called by the πŸ€— Trainer on the end of each epoch. The Callback reinitialises and reshuffles the streaming dataset at the beginning of each new epoch - this gives different shuffling across our subsets for every epoch." ] }, { "cell_type": "code", "execution_count": 19, "id": "3ac16b62-b3c0-4c68-8f3d-9ecf471534b2", "metadata": {}, "outputs": [], "source": [ "from transformers import TrainerCallback\n", "from transformers.trainer_pt_utils import IterableDatasetShard\n", "from torch.utils.data import IterableDataset\n", "\n", "# trainer callback to reinitialise and reshuffle the streamable datasets at the beginning of each epoch\n", "class ShuffleCallback(TrainerCallback):\n", " def on_epoch_begin(self, args, state, control, train_dataloader, **kwargs):\n", " if isinstance(train_dataloader.dataset, IterableDatasetShard):\n", " pass # set_epoch() is handled by the Trainer\n", " elif isinstance(train_dataloader.dataset, IterableDataset):\n", " train_dataloader.dataset.set_epoch(train_dataloader.dataset._epoch + 1)" ] }, { "cell_type": "markdown", "id": "bac29114-d226-4f54-97cf-8718c9f94e1e", "metadata": {}, "source": [ "We can forward the training arguments to the πŸ€— Trainer along with our model,\n", "dataset, data collator, `compute_metrics` function and custom callback:" ] }, { "cell_type": "code", "execution_count": 20, "id": "d546d7fe-0543-479a-b708-2ebabec19493", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/ubuntu/whisper-small-lt_sr/./ is already a clone of https://huggingface.co/jraramhoej/whisper-small-lt_sr. Make sure you pull the latest changes with `repo.git_pull()`.\n", "max_steps is given, it will override any value given in num_train_epochs\n", "Using cuda_amp half precision backend\n" ] } ], "source": [ "from transformers import Seq2SeqTrainer\n", "\n", "trainer = Seq2SeqTrainer(\n", " args=training_args,\n", " model=model,\n", " train_dataset=vectorized_datasets[\"train\"],\n", " eval_dataset=vectorized_datasets[\"test\"],\n", " data_collator=data_collator,\n", " compute_metrics=compute_metrics,\n", " tokenizer=processor,\n", " callbacks=[ShuffleCallback()],\n", ")" ] }, { "cell_type": "markdown", "id": "67ab88c3-7091-4e51-8ad5-f5cacbe18449", "metadata": {}, "source": [ "We'll save the model and processor to the output directory before training:" ] }, { "cell_type": "code", "execution_count": 21, "id": "a1ccb9ed-cbc8-4419-91c0-651e9424b672", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Configuration saved in ./config.json\n", "Model weights saved in ./pytorch_model.bin\n", "Feature extractor saved in ./preprocessor_config.json\n", "tokenizer config file saved in ./tokenizer_config.json\n", "Special tokens file saved in ./special_tokens_map.json\n", "added tokens file saved in ./added_tokens.json\n" ] } ], "source": [ "model.save_pretrained(training_args.output_dir)\n", "processor.save_pretrained(training_args.output_dir)" ] }, { "cell_type": "markdown", "id": "7f404cf9-4345-468c-8196-4bd101d9bd51", "metadata": {}, "source": [ "### Training" ] }, { "cell_type": "markdown", "id": "5e8b8d56-5a70-4f68-bd2e-f0752d0bd112", "metadata": {}, "source": [ "Training will take approximately 5-10 hours depending on your GPU. The peak GPU memory for the given training configuration is approximately 36GB. \n", "Depending on your GPU, it is possible that you will encounter a CUDA `\"out-of-memory\"` error when you launch training. \n", "In this case, you can reduce the `per_device_train_batch_size` incrementally by factors of 2 \n", "and employ [`gradient_accumulation_steps`](https://huggingface.co/docs/transformers/main_classes/trainer#transformers.Seq2SeqTrainingArguments.gradient_accumulation_steps)\n", "to compensate.\n", "\n", "To launch training, simply execute:" ] }, { "cell_type": "code", "execution_count": 22, "id": "ee8b7b8e-1c9a-4d77-9137-1778a629e6de", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/ubuntu/.local/lib/python3.8/site-packages/transformers/optimization.py:306: FutureWarning: This implementation of AdamW is deprecated and will be removed in a future version. Use the PyTorch implementation torch.optim.AdamW instead, or set `no_deprecation_warning=True` to disable this warning\n", " warnings.warn(\n", "***** Running training *****\n", " Num examples = 160000\n", " Num Epochs = 9223372036854775807\n", " Instantaneous batch size per device = 32\n", " Total train batch size (w. parallel, distributed & accumulation) = 32\n", " Gradient Accumulation steps = 1\n", " Total optimization steps = 5000\n", " Number of trainable parameters = 241734912\n", "Reading metadata...: 5194it [00:00, 26837.28it/s]\n", "The following columns in the training set don't have a corresponding argument in `WhisperForConditionalGeneration.forward` and have been ignored: input_length. If input_length are not expected by `WhisperForConditionalGeneration.forward`, you can safely ignore this message.\n" ] }, { "data": { "text/html": [ "\n", "
\n", " \n", " \n", " [5000/5000 6:53:14, Epoch 30/9223372036854775807]\n", "
\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
StepTraining LossValidation LossWer
10000.0237000.47448637.983881
20000.0016000.51278735.974908
30000.0008000.54575635.784333
40000.0005000.56517535.824036
50000.0004000.57237635.859769

" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "Reading metadata...: 5194it [00:00, 18238.47it/s]\n", "Reading metadata...: 5194it [00:00, 30045.67it/s]\n", "Reading metadata...: 5194it [00:00, 30467.13it/s]\n", "Reading metadata...: 5194it [00:00, 29203.13it/s]\n", "Reading metadata...: 5194it [00:00, 29785.23it/s]\n", "Reading metadata...: 5194it [00:00, 30399.83it/s]\n", "***** Running Evaluation *****\n", " Num examples: Unknown\n", " Batch size = 8\n", "Reading metadata...: 3749it [00:00, 12140.15it/s]\n", "The following columns in the evaluation set don't have a corresponding argument in `WhisperForConditionalGeneration.forward` and have been ignored: input_length. If input_length are not expected by `WhisperForConditionalGeneration.forward`, you can safely ignore this message.\n", "Saving model checkpoint to ./checkpoint-1000\n", "Configuration saved in ./checkpoint-1000/config.json\n", "Model weights saved in ./checkpoint-1000/pytorch_model.bin\n", "Feature extractor saved in ./checkpoint-1000/preprocessor_config.json\n", "tokenizer config file saved in ./checkpoint-1000/tokenizer_config.json\n", "Special tokens file saved in ./checkpoint-1000/special_tokens_map.json\n", "added tokens file saved in ./checkpoint-1000/added_tokens.json\n", "Feature extractor saved in ./preprocessor_config.json\n", "tokenizer config file saved in ./tokenizer_config.json\n", "Special tokens file saved in ./special_tokens_map.json\n", "added tokens file saved in ./added_tokens.json\n", "Reading metadata...: 5194it [00:00, 29994.50it/s]\n", "Reading metadata...: 5194it [00:00, 6191.43it/s]\n", "Reading metadata...: 5194it [00:00, 30728.37it/s]\n", "Reading metadata...: 5194it [00:00, 24715.43it/s]\n", "Reading metadata...: 5194it [00:00, 28694.77it/s]\n", "Reading metadata...: 5194it [00:00, 30271.03it/s]\n", "***** Running Evaluation *****\n", " Num examples: Unknown\n", " Batch size = 8\n", "Reading metadata...: 3749it [00:00, 31235.80it/s]\n", "The following columns in the evaluation set don't have a corresponding argument in `WhisperForConditionalGeneration.forward` and have been ignored: input_length. If input_length are not expected by `WhisperForConditionalGeneration.forward`, you can safely ignore this message.\n", "Saving model checkpoint to ./checkpoint-2000\n", "Configuration saved in ./checkpoint-2000/config.json\n", "Model weights saved in ./checkpoint-2000/pytorch_model.bin\n", "Feature extractor saved in ./checkpoint-2000/preprocessor_config.json\n", "tokenizer config file saved in ./checkpoint-2000/tokenizer_config.json\n", "Special tokens file saved in ./checkpoint-2000/special_tokens_map.json\n", "added tokens file saved in ./checkpoint-2000/added_tokens.json\n", "Feature extractor saved in ./preprocessor_config.json\n", "tokenizer config file saved in ./tokenizer_config.json\n", "Special tokens file saved in ./special_tokens_map.json\n", "added tokens file saved in ./added_tokens.json\n", "Reading metadata...: 5194it [00:00, 24646.28it/s]\n", "Reading metadata...: 5194it [00:00, 28103.75it/s]\n", "Reading metadata...: 5194it [00:00, 25879.94it/s]\n", "Reading metadata...: 5194it [00:00, 16387.12it/s]\n", "Reading metadata...: 5194it [00:00, 30893.30it/s]\n", "Reading metadata...: 5194it [00:00, 30292.42it/s]\n", "***** Running Evaluation *****\n", " Num examples: Unknown\n", " Batch size = 8\n", "Reading metadata...: 3749it [00:00, 28834.15it/s]\n", "The following columns in the evaluation set don't have a corresponding argument in `WhisperForConditionalGeneration.forward` and have been ignored: input_length. If input_length are not expected by `WhisperForConditionalGeneration.forward`, you can safely ignore this message.\n", "Saving model checkpoint to ./checkpoint-3000\n", "Configuration saved in ./checkpoint-3000/config.json\n", "Model weights saved in ./checkpoint-3000/pytorch_model.bin\n", "Feature extractor saved in ./checkpoint-3000/preprocessor_config.json\n", "tokenizer config file saved in ./checkpoint-3000/tokenizer_config.json\n", "Special tokens file saved in ./checkpoint-3000/special_tokens_map.json\n", "added tokens file saved in ./checkpoint-3000/added_tokens.json\n", "Feature extractor saved in ./preprocessor_config.json\n", "tokenizer config file saved in ./tokenizer_config.json\n", "Special tokens file saved in ./special_tokens_map.json\n", "added tokens file saved in ./added_tokens.json\n", "Reading metadata...: 5194it [00:00, 24644.13it/s]\n", "Reading metadata...: 5194it [00:00, 10820.40it/s]\n", "Reading metadata...: 5194it [00:00, 30318.60it/s]\n", "Reading metadata...: 5194it [00:00, 28565.08it/s]\n", "Reading metadata...: 5194it [00:00, 24580.04it/s]\n", "Reading metadata...: 5194it [00:00, 30543.46it/s]\n", "***** Running Evaluation *****\n", " Num examples: Unknown\n", " Batch size = 8\n", "Reading metadata...: 3749it [00:00, 24211.98it/s]\n", "The following columns in the evaluation set don't have a corresponding argument in `WhisperForConditionalGeneration.forward` and have been ignored: input_length. If input_length are not expected by `WhisperForConditionalGeneration.forward`, you can safely ignore this message.\n", "Saving model checkpoint to ./checkpoint-4000\n", "Configuration saved in ./checkpoint-4000/config.json\n", "Model weights saved in ./checkpoint-4000/pytorch_model.bin\n", "Feature extractor saved in ./checkpoint-4000/preprocessor_config.json\n", "tokenizer config file saved in ./checkpoint-4000/tokenizer_config.json\n", "Special tokens file saved in ./checkpoint-4000/special_tokens_map.json\n", "added tokens file saved in ./checkpoint-4000/added_tokens.json\n", "Feature extractor saved in ./preprocessor_config.json\n", "tokenizer config file saved in ./tokenizer_config.json\n", "Special tokens file saved in ./special_tokens_map.json\n", "added tokens file saved in ./added_tokens.json\n", "Reading metadata...: 5194it [00:00, 28263.75it/s]\n", "Reading metadata...: 5194it [00:00, 30236.16it/s]\n", "Reading metadata...: 5194it [00:00, 30038.26it/s]\n", "Reading metadata...: 5194it [00:00, 24802.88it/s]\n", "Reading metadata...: 5194it [00:00, 8652.20it/s]\n", "Reading metadata...: 5194it [00:00, 28454.75it/s]\n", "***** Running Evaluation *****\n", " Num examples: Unknown\n", " Batch size = 8\n", "Reading metadata...: 3749it [00:00, 4607.71it/s]\n", "The following columns in the evaluation set don't have a corresponding argument in `WhisperForConditionalGeneration.forward` and have been ignored: input_length. If input_length are not expected by `WhisperForConditionalGeneration.forward`, you can safely ignore this message.\n", "Saving model checkpoint to ./checkpoint-5000\n", "Configuration saved in ./checkpoint-5000/config.json\n", "Model weights saved in ./checkpoint-5000/pytorch_model.bin\n", "Feature extractor saved in ./checkpoint-5000/preprocessor_config.json\n", "tokenizer config file saved in ./checkpoint-5000/tokenizer_config.json\n", "Special tokens file saved in ./checkpoint-5000/special_tokens_map.json\n", "added tokens file saved in ./checkpoint-5000/added_tokens.json\n", "Feature extractor saved in ./preprocessor_config.json\n", "tokenizer config file saved in ./tokenizer_config.json\n", "Special tokens file saved in ./special_tokens_map.json\n", "added tokens file saved in ./added_tokens.json\n", "\n", "\n", "Training completed. Do not forget to share your model on huggingface.co/models =)\n", "\n", "\n", "Loading best model from ./checkpoint-3000 (score: 35.78433318775559).\n" ] }, { "data": { "text/plain": [ "TrainOutput(global_step=5000, training_loss=0.11304525989443064, metrics={'train_runtime': 24832.6385, 'train_samples_per_second': 6.443, 'train_steps_per_second': 0.201, 'total_flos': 4.59831976869888e+19, 'train_loss': 0.11304525989443064, 'epoch': 30.02})" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "trainer.train()" ] }, { "cell_type": "markdown", "id": "747c6a6e", "metadata": { "pycharm": { "name": "#%% md\n" } }, "source": [ "(note that training may take some time to commence as we load the first training data samples with streaming mode)" ] }, { "cell_type": "markdown", "id": "810ced54-7187-4a06-b2fe-ba6dcca94dc3", "metadata": {}, "source": [ "We can label our checkpoint with the `whisper-event` tag on push by setting the appropriate key-word arguments (kwargs):" ] }, { "cell_type": "code", "execution_count": null, "id": "6dd0e310-9b07-4133-ac14-2ed2d7524e22", "metadata": {}, "outputs": [], "source": [ "kwargs = {\n", " \"dataset_tags\": \"mozilla-foundation/common_voice_11_0\",\n", " \"dataset\": \"Common Voice 11.0\", # a 'pretty' name for the training dataset\n", " \"language\": \"lt\",\n", " \"model_name\": \"Whisper Small Lt\", # a 'pretty' name for your model\n", " \"finetuned_from\": \"openai/whisper-small\",\n", " \"tasks\": \"automatic-speech-recognition\",\n", " \"tags\": \"whisper-event\",\n", "}" ] }, { "cell_type": "markdown", "id": "090d676a-f944-4297-a938-a40eda0b2b68", "metadata": {}, "source": [ "The training results can now be uploaded to the Hub. To do so, execute the `push_to_hub` command:" ] }, { "cell_type": "code", "execution_count": null, "id": "95737cda-c5dd-4887-a4d0-dfcb0d61d977", "metadata": {}, "outputs": [], "source": [ "trainer.push_to_hub(**kwargs)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.10" } }, "nbformat": 4, "nbformat_minor": 5 }