{ "cells": [ { "cell_type": "markdown", "metadata": { "id": "X4cRE8IbIrIV" }, "source": [ "If you're opening this Notebook on colab, you will probably need to install 🤗 Transformers and 🤗 Datasets. Uncomment the following cell and run it." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 1000 }, "id": "MOsHUjgdIrIW", "outputId": "f84a093e-147f-470e-aad9-80fb51193c8e" }, "outputs": [], "source": [ "#! pip install transformers datasets huggingface_hub" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you're opening this notebook locally, make sure your environment has an install from the last version of those libraries.\n", "\n", "To be able to share your model with the community and generate results like the one shown in the picture below via the inference API, there are a few more steps to follow.\n", "\n", "First you have to store your authentication token from the Hugging Face website (sign up [here](https://huggingface.co/join) if you haven't already!) then uncomment the following cell and input your token:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from huggingface_hub import notebook_login\n", "\n", "notebook_login()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Then you need to install Git-LFS and setup Git if you haven't already. On Linux, uncomment the following instructions and adapt with your name and email. On Windows, please download git-lfs at https://git-lfs.github.com/" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# !apt install git-lfs\n", "# !git config --global user.email \"you@example.com\"\n", "# !git config --global user.name \"Your Name\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Make sure your version of Transformers is at least 4.16.0 since some of the functionality we use was introduced in that version:" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "4.16.0.dev0\n" ] } ], "source": [ "import transformers\n", "\n", "print(transformers.__version__)" ] }, { "cell_type": "markdown", "metadata": { "id": "HFASsisvIrIb" }, "source": [ "You can find a script version of this notebook to fine-tune your model in a distributed fashion using multiple GPUs or TPUs [here](https://github.com/huggingface/transformers/tree/main/examples/tensorflow/language-modeling)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also quickly upload some telemetry - this tells us which examples and software versions are getting used so we know where to prioritize our maintenance efforts. We don't collect (or care about) any personally identifiable information, but if you'd prefer not to be counted, feel free to skip this step or delete this cell entirely." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from transformers.utils import send_example_telemetry\n", "\n", "send_example_telemetry(\"language_modeling_from_scratch_notebook\", framework=\"tensorflow\")" ] }, { "cell_type": "markdown", "metadata": { "id": "a3KD3WXU3l-O" }, "source": [ "# Train a language model" ] }, { "cell_type": "markdown", "metadata": { "id": "JAscNNUD3l-P" }, "source": [ "In this notebook, we'll see how to train a [🤗 Transformers](https://github.com/huggingface/transformers) model on a language modeling task. We will cover two types of language modeling tasks which are:\n", "\n", "- Causal language modeling: the model has to predict the next token in the sentence (so the labels are the same as the inputs shifted to the right). To make sure the model does not cheat, its attention computations are masked so that tokens cannot attend to tokens to their right, as this would result in label leakage.\n", "\n", "\n", "\n", "- Masked language modeling: the model has to predict some tokens that are masked in the input. It still has access to the whole sentence, so it can use the tokens before and after the tokens masked to predict their value.\n", "\n", "\n", "\n", "We will see how to easily load and preprocess the dataset for each one of those tasks, and how to use the `Trainer` API to train a model on it.\n", "\n", "This notebooks assumes you have trained a tokenizer on the corpus you are using, see the [How to train a tokenizer](https://github.com/huggingface/notebooks/blob/master/examples/tokenizer_training.ipynb) notebook ([open in colab](https://colab.research.google.com/github/huggingface/notebooks/blob/master/examples/tokenizer_training.ipynb)).\n", "\n", "A script version of this notebook you can directly run on a distributed environment or on TPU is available in our [examples folder](https://github.com/huggingface/transformers/tree/master/examples)." ] }, { "cell_type": "markdown", "metadata": { "id": "1r_n9OWV3l-Q" }, "source": [ "## Preparing the dataset" ] }, { "cell_type": "markdown", "metadata": { "id": "kswRMhPc3l-Q" }, "source": [ "For each of those tasks, we will use the [Wikitext 2]() dataset as an example. You can load it very easily with the 🤗 Datasets library." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "id": "n2ZRs1cL3l-R", "outputId": "11151c56-be90-4d11-e7df-db85e745ca5c" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Reusing dataset wikitext (/home/matt/.cache/huggingface/datasets/wikitext/wikitext-2-raw-v1/1.0.0/a241db52902eaf2c6aa732210bead40c090019a499ceb13bcbfa3f8ab646a126)\n" ] }, { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "02f09b24e4ad423fb19731c4e15ff52e", "version_major": 2, "version_minor": 0 }, "text/plain": [ " 0%| | 0/3 [00:00<?, ?it/s]" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from datasets import load_dataset\n", "\n", "datasets = load_dataset(\"wikitext\", \"wikitext-2-raw-v1\")" ] }, { "cell_type": "markdown", "metadata": { "id": "f1-9jepM3l-W" }, "source": [ "You can replace the dataset above with any dataset hosted on [the hub](https://huggingface.co/datasets) or use your own files. Just uncomment the following cell and replace the paths with your own input files:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "id": "uxSaGa_l3l-W" }, "outputs": [], "source": [ "# datasets = load_dataset(\"text\", data_files={\"train\": path_to_train.txt, \"validation\": path_to_validation.txt}" ] }, { "cell_type": "markdown", "metadata": { "id": "jY1SwIrY3l-a" }, "source": [ "You can also load datasets from a csv or a JSON file, see the [full documentation](https://huggingface.co/docs/datasets/loading_datasets.html#from-local-files) for more information." ] }, { "cell_type": "markdown", "metadata": { "id": "u3EtYfeHIrIz" }, "source": [ "To access an actual element, you need to select a split first, then give an index:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "id": "X6HrpprwIrIz", "outputId": "d7670bc0-42e4-4c09-8a6a-5c018ded7d95" }, "outputs": [ { "data": { "text/plain": [ "{'text': ' The game \\'s battle system , the BliTZ system , is carried over directly from Valkyira Chronicles . During missions , players select each unit using a top @-@ down perspective of the battlefield map : once a character is selected , the player moves the character around the battlefield in third @-@ person . A character can only act once per @-@ turn , but characters can be granted multiple turns at the expense of other characters \\' turns . Each character has a field and distance of movement limited by their Action Gauge . Up to nine characters can be assigned to a single mission . During gameplay , characters will call out if something happens to them , such as their health points ( HP ) getting low or being knocked out by enemy attacks . Each character has specific \" Potentials \" , skills unique to each character . They are divided into \" Personal Potential \" , which are innate skills that remain unaltered unless otherwise dictated by the story and can either help or impede a character , and \" Battle Potentials \" , which are grown throughout the game and always grant boons to a character . To learn Battle Potentials , each character has a unique \" Masters Table \" , a grid @-@ based skill table that can be used to acquire and link different skills . Characters also have Special Abilities that grant them temporary boosts on the battlefield : Kurt can activate \" Direct Command \" and move around the battlefield without depleting his Action Point gauge , the character Reila can shift into her \" Valkyria Form \" and become invincible , while Imca can target multiple enemy units with her heavy weapon . \\n'}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "datasets[\"train\"][10]" ] }, { "cell_type": "markdown", "metadata": { "id": "WHUmphG3IrI3" }, "source": [ "To get a sense of what the data looks like, the following function will show some examples picked randomly in the dataset." ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "id": "ur5sNUcZ3l-g" }, "outputs": [], "source": [ "from datasets import ClassLabel\n", "import random\n", "import pandas as pd\n", "from IPython.display import display, HTML\n", "\n", "\n", "def show_random_elements(dataset, num_examples=10):\n", " assert num_examples <= len(\n", " dataset\n", " ), \"Can't pick more elements than there are in the dataset.\"\n", " picks = []\n", " for _ in range(num_examples):\n", " pick = random.randint(0, len(dataset) - 1)\n", " while pick in picks:\n", " pick = random.randint(0, len(dataset) - 1)\n", " picks.append(pick)\n", "\n", " df = pd.DataFrame(dataset[picks])\n", " for column, typ in dataset.features.items():\n", " if isinstance(typ, ClassLabel):\n", " df[column] = df[column].transform(lambda i: typ.names[i])\n", " display(HTML(df.to_html()))" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "id": "1Uk8NROQ3l-k", "outputId": "a822dcec-51e3-4dba-c73c-dba9e0301726" }, "outputs": [ { "data": { "text/html": [ "<table border=\"1\" class=\"dataframe\">\n", " <thead>\n", " <tr style=\"text-align: right;\">\n", " <th></th>\n", " <th>text</th>\n", " </tr>\n", " </thead>\n", " <tbody>\n", " <tr>\n", " <th>0</th>\n", " <td></td>\n", " </tr>\n", " <tr>\n", " <th>1</th>\n", " <td>In addition to the previously known steroid compounds ergosta @-@ 7 @,@ 22 @-@ diene @-@ 3 @-@ ol acetate and ergosta @-@ 4,6,8- ( 14 ) , 22 @-@ tetraene @-@ 3 @-@ one , three unique triterpenes — derivatives of 3 @-@ hydroxy @-@ lanostane — have been isolated from fruit bodies of A. hygrometricus . The compounds , named astrahygrol , 3 @-@ epi @-@ astrahygrol , and astrahygrone ( 3 @-@ oxo @-@ 25S @-@ lanost @-@ 8 @-@ eno @-@ 26 @,@ 22 @-@ lactone ) , have δ @-@ lactone ( a six @-@ membered ring ) in the side chain — a chemical feature previously unknown in the Basidiomycetes . A previously unknown steryl ester ( 3β , 5α @-@ dihydroxy- ( 22E , 24R ) -ergosta @-@ 7 @,@ 22 @-@ dien @-@ 6α @-@ yl palmitate ) has been isolated from mycelia grown in liquid culture . The compound has a polyhydroxylated ergostane @-@ type nucleus . \\n</td>\n", " </tr>\n", " <tr>\n", " <th>2</th>\n", " <td></td>\n", " </tr>\n", " <tr>\n", " <th>3</th>\n", " <td></td>\n", " </tr>\n", " <tr>\n", " <th>4</th>\n", " <td>= = = Old Vic and Vivien Leigh ( 1936 – 38 ) = = = \\n</td>\n", " </tr>\n", " <tr>\n", " <th>5</th>\n", " <td></td>\n", " </tr>\n", " <tr>\n", " <th>6</th>\n", " <td>Traffic Wales is the Welsh Government 's traffic information service , it is a partnership between the Welsh Government , the two Trunk Road Agents ( South Wales TRA / Norh & Mid Wales TRA ) and the WTTC consultancy Amey . In South Wales the service is managed from the South Wales Traffic Management Centre , also home to INRIX Media 's studio , providing live travel information for the media . The Traffic Wales website has five live traffic webcams on the Capel Llanilltern – Culverhouse Cross Link Road ( Trunk Road ) and the images are updated every 5 minutes . Traffic Wales also operates a Traffic Information Hotline , motorists can use this telephone service by dialling an 0845 number , which gives up to date traffic information and travel advice . \\n</td>\n", " </tr>\n", " <tr>\n", " <th>7</th>\n", " <td></td>\n", " </tr>\n", " <tr>\n", " <th>8</th>\n", " <td>= = Coaching and management career = = \\n</td>\n", " </tr>\n", " <tr>\n", " <th>9</th>\n", " <td></td>\n", " </tr>\n", " </tbody>\n", "</table>" ], "text/plain": [ "<IPython.core.display.HTML object>" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "show_random_elements(datasets[\"train\"])" ] }, { "cell_type": "markdown", "metadata": { "id": "CKerdF353l-o" }, "source": [ "As we can see, some of the texts are a full paragraph of a Wikipedia article while others are just titles or empty lines." ] }, { "cell_type": "markdown", "metadata": { "id": "JEA1ju653l-p" }, "source": [ "## Causal Language modeling" ] }, { "cell_type": "markdown", "metadata": { "id": "v5GTGKZS3l-q" }, "source": [ "For causal language modeling (CLM) we are going to take all the texts in our dataset, tokenize them and concatenate them. Then we will split them into examples of a fixed sequence length. This way the model will receive chunks of contiguous text that may look like:\n", "```\n", "part of text 1\n", "```\n", "or \n", "```\n", "end of text 1 [BOS_TOKEN] beginning of text 2\n", "```\n", "depending on whether they span multiple original texts or not. The labels will be the same as the inputs, shifted to the right.\n", "\n", "We will use the [`gpt2`](https://huggingface.co/gpt2) architecture for this example. You can pick any of the checkpoints listed [here](https://huggingface.co/models?filter=causal-lm) instead. For the tokenizer, you can optionally replace the checkpoint with one that you trained yourself." ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "id": "-WGBCO343l-q" }, "outputs": [], "source": [ "model_checkpoint = \"gpt2\"\n", "tokenizer_checkpoint = \"sgugger/gpt2-like-tokenizer\"" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "id": "iAYlS40Z3l-v" }, "outputs": [], "source": [ "from transformers import AutoTokenizer\n", "\n", "tokenizer = AutoTokenizer.from_pretrained(tokenizer_checkpoint)" ] }, { "cell_type": "markdown", "metadata": { "id": "rpOiBrJ13l-y" }, "source": [ "We can now call the tokenizer on all our texts. This is very simple, using the [`map`](https://huggingface.co/docs/datasets/package_reference/main_classes.html#datasets.Dataset.map) method from the Datasets library. First we define a function that calls the tokenizer on our texts:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "id": "lS2m25YM3l-z" }, "outputs": [], "source": [ "def tokenize_function(examples):\n", " return tokenizer(examples[\"text\"])" ] }, { "cell_type": "markdown", "metadata": { "id": "M9xVAa3s3l-2" }, "source": [ "Then we apply it to all the splits in our `datasets` object, using `batched=True` and 4 processes to speed up the preprocessing. We won't need the `text` column afterward, so we discard it." ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "id": "NVAO0H8u3l-3", "outputId": "30d88b8a-e353-4e13-f709-8e5e06ef747b" }, "outputs": [], "source": [ "tokenized_datasets = datasets.map(\n", " tokenize_function, batched=True, num_proc=4, remove_columns=[\"text\"]\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "8qik3J_C3l-7" }, "source": [ "If we now look at an element of our datasets, we will see the text have been replaced by the `input_ids` the model will need:" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "id": "nYv_mcKk3l-7", "outputId": "8334734c-0f86-4e18-ec17-4216a2d5dd18" }, "outputs": [ { "data": { "text/plain": [ "{'attention_mask': [1, 1, 1, 1, 1, 1],\n", " 'input_ids': [238, 8576, 9441, 2987, 238, 252]}" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tokenized_datasets[\"train\"][1]" ] }, { "cell_type": "markdown", "metadata": { "id": "obvgcXda3l--" }, "source": [ "Now for the harder part: We need to concatenate all our texts together, and then split the result into chunks of a fixed size, which we will call `block_size`. To do this, we will use the `map` method again, with the option `batched=True`. When we use `batched=True`, the function we pass to `map()` will be passed multiple inputs at once, allowing us to group them into more or fewer examples than we had in the input. This allows us to create our new fixed-length samples.\n", "\n", "We can use any `block_size`, but high values might be too big to fit in your GPU RAM, so let's use something a bit smaller: 128." ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "id": "DVHs5aCA3l-_" }, "outputs": [], "source": [ "# block_size = tokenizer.model_max_length\n", "block_size = 128" ] }, { "cell_type": "markdown", "metadata": { "id": "RpNfGiMw3l_A" }, "source": [ "Then we write the preprocessing function that will group our texts:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "id": "iaAJy5Hu3l_B" }, "outputs": [], "source": [ "def group_texts(examples):\n", " # Concatenate all texts.\n", " concatenated_examples = {k: sum(examples[k], []) for k in examples.keys()}\n", " total_length = len(concatenated_examples[list(examples.keys())[0]])\n", " # We drop the small remainder, we could add padding if the model supported it instead of this drop, you can\n", " # customize this part to your needs.\n", " total_length = (total_length // block_size) * block_size\n", " # Split by chunks of max_len.\n", " result = {\n", " k: [t[i : i + block_size] for i in range(0, total_length, block_size)]\n", " for k, t in concatenated_examples.items()\n", " }\n", " result[\"labels\"] = result[\"input_ids\"].copy()\n", " return result" ] }, { "cell_type": "markdown", "metadata": { "id": "LGJWXtNv3l_C" }, "source": [ "Note that we duplicate the inputs for our labels, without shifting them, even though we told you the labels need to be shifted! This is because CausalLM models in the 🤗 Transformers library automatically apply right-shifting to the inputs, so we don't need to do it manually.\n", "\n", "Also note that by default, the `map` method will send a batch of 1,000 examples to be treated by the preprocessing function. So here, we will drop the remainder to make the concatenated tokenized texts a multiple of `block_size` every 1,000 examples. You can adjust this behavior by passing a higher batch size (which will also be processed slower). You can also speed-up the preprocessing by using multiprocessing:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "id": "gXUSfBrq3l_C", "outputId": "34e55885-3d8f-4f05-cbdb-706ce56a25f8" }, "outputs": [], "source": [ "lm_datasets = tokenized_datasets.map(\n", " group_texts,\n", " batched=True,\n", " batch_size=1000,\n", " num_proc=4,\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "6n84V8Gc3l_G" }, "source": [ "And we can check our datasets have changed: now the samples contain chunks of `block_size` contiguous tokens, potentially spanning several of our original texts." ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "id": "hTeGCLl_3l_G", "outputId": "ab381a07-f92e-4b14-f7b6-e4af5513d7c4" }, "outputs": [ { "data": { "text/plain": [ "' the \" Nameless \", a penal military unit serving the nation of Gallia during the Second Europan War who perform secret black operations and are pitted against the Imperial unit \" Calamaty Raven \". \\n The game began development in 2010, carrying over a large portion of the work done on Valkyria Chronicles II. While it retained the standard features of the series, it also underwent multiple adjustments, such as making the game more forgiving for series newcomers. Character designer Raita Honjou and composer Hitoshi Sakimoto both returned from previous entries, along with Valkyria Chronicles II director Takeshi Ozawa. A large'" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tokenizer.decode(lm_datasets[\"train\"][1][\"input_ids\"])" ] }, { "cell_type": "markdown", "metadata": { "id": "iEmeQ7Xm3l_H" }, "source": [ "Now that the data has been cleaned, we're ready to initialize our `Model`. First we create the model using the same config as our checkpoint, but initialized with random weights:" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "id": "sPqQA3TT3l_I" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2022-01-28 14:15:22.987842: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:22.992329: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:22.993015: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:22.994216: I tensorflow/core/platform/cpu_feature_guard.cc:151] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA\n", "To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.\n", "2022-01-28 14:15:22.997035: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:22.997704: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:22.998354: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:23.362585: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:23.363296: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:23.363929: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:936] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero\n", "2022-01-28 14:15:23.364557: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1525] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 21827 MB memory: -> device: 0, name: GeForce RTX 3090, pci bus id: 0000:21:00.0, compute capability: 8.6\n", "2022-01-28 14:15:23.539334: W tensorflow/python/util/util.cc:368] Sets are not currently considered sequences, but this may change in the future, so consider avoiding using them.\n" ] } ], "source": [ "from transformers import AutoConfig, TFAutoModelForCausalLM\n", "\n", "config = AutoConfig.from_pretrained(model_checkpoint)\n", "model = TFAutoModelForCausalLM.from_config(config)" ] }, { "cell_type": "markdown", "metadata": { "id": "VyPQTOF_3l_J" }, "source": [ "Now let's set some hyperparameters like the learning rate and weight decay, as well as the model ID, if we want to upload our model to the Hub afterwards." ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "id": "YbSwEhQ63l_L" }, "outputs": [], "source": [ "learning_rate = 2e-5\n", "weight_decay = 0.01\n", "push_to_hub_model_id = f\"{model_checkpoint}-wikitext2\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we initialize our optimizer." ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [], "source": [ "from transformers import AdamWeightDecay\n", "\n", "optimizer = AdamWeightDecay(learning_rate=learning_rate, weight_decay_rate=weight_decay)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, we compile our model. Note that most Transformers models compute loss internally, so we actually don't have to specify anything for that argument! You can of course set your own loss function if you want, but by default our models will choose the 'obvious' loss that matches their task, such as cross-entropy in the case of language modelling. The built-in loss will also correctly handle things like masking the loss on padding tokens, or unlabelled tokens in the case of masked language modelling, so we recommend using it unless you're an advanced user!\n", "\n", "We also use the `jit_compile` argument to compile the model with [XLA](https://www.tensorflow.org/xla). XLA compilation adds a delay at the start of training, but this is quickly repaid by faster training iterations after that. It has one downside, though - if the shape of your input changes at all, then it will need to rerun the compilation again! This isn't a problem for us in this notebook, because all of our examples are exactly the same length. Be careful with it when that isn't true, though - if you have a variable sequence length in your batches, then you might spend more time compiling your model than actually training, especially for small datasets!\n", "\n", "If you encounter difficulties when training with XLA, it's a good idea to remove the `jit_compile` argument and see if that fixes things. In fact, when debugging, it can be helpful to skip graph compilation entirely with the `run_eagerly=True` argument to [`compile()`](https://www.tensorflow.org/api_docs/python/tf/keras/Model#compile). This will let you identify the exact line of code where problems arise, but it will significantly reduce your performance, so make sure to remove it again when you've fixed the problem!" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "ename": "NameError", "evalue": "name 'model' is not defined", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", "Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m \u001b[38;5;21;01mtensorflow\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m \u001b[38;5;21;01mtf\u001b[39;00m\n\u001b[0;32m----> 3\u001b[0m \u001b[43mmodel\u001b[49m\u001b[38;5;241m.\u001b[39mcompile(optimizer\u001b[38;5;241m=\u001b[39moptimizer, jit_compile\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m)\n", "\u001b[0;31mNameError\u001b[0m: name 'model' is not defined" ] } ], "source": [ "import tensorflow as tf\n", "\n", "model.compile(optimizer=optimizer, jit_compile=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, we convert our datasets to `tf.data.Dataset`, which Keras understands natively. There are two ways to do this - we can use the slightly more low-level [`Dataset.to_tf_dataset()`](https://huggingface.co/docs/datasets/package_reference/main_classes#datasets.Dataset.to_tf_dataset) method, or we can use [`Model.prepare_tf_dataset()`](https://huggingface.co/docs/transformers/main_classes/model#transformers.TFPreTrainedModel.prepare_tf_dataset). The main difference between these two is that the `Model` method can inspect the model to determine which column names it can use as input, which means you don't need to specify them yourself. It also supplies a data collator by default which is appropriate for most tasks." ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "train_set = model.prepare_tf_dataset(\n", " lm_datasets[\"train\"],\n", " shuffle=True,\n", " batch_size=16,\n", ")\n", "\n", "validation_set = model.prepare_tf_dataset(\n", " lm_datasets[\"validation\"],\n", " shuffle=False,\n", " batch_size=16,\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "6Vvz34Td3l_O" }, "source": [ "Now we can train our model. We can also add a callback to sync up our model with the Hub - this allows us to resume training from other machines and even test the model's inference quality midway through training! Make sure to change the `username` if you do. If you don't want to do this, simply remove the callbacks argument in the call to `fit()`." ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "id": "NyZvu_MF3l_P", "outputId": "b69d0931-7f1f-4f2d-fdb8-09d37c7418bb" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/matt/PycharmProjects/notebooks/examples/clm_from_scratch_model_save is already a clone of https://huggingface.co/Rocketknight1/gpt2-finetuned-wikitext2. Make sure you pull the latest changes with `repo.git_pull()`.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Epoch 1/2\n", " 1/1124 [..............................] - ETA: 3:31:23 - loss: 10.9357" ] }, { "name": "stderr", "output_type": "stream", "text": [ "2022-01-28 14:15:38.103602: I tensorflow/stream_executor/cuda/cuda_blas.cc:1786] TensorFloat-32 will be used for the matrix multiplication. This will only be logged once.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "1124/1124 [==============================] - 207s 174ms/step - loss: 7.3186 - val_loss: 6.7745\n", "Epoch 2/2\n", "1124/1124 [==============================] - 193s 171ms/step - loss: 6.4996 - val_loss: 6.3490\n" ] }, { "data": { "text/plain": [ "<keras.callbacks.History at 0x7f099c669d50>" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from transformers.keras_callbacks import PushToHubCallback\n", "\n", "model_name = model_checkpoint.split(\"/\")[-1]\n", "push_to_hub_model_id = f\"{model_name}-finetuned-wikitext2\"\n", "\n", "callback = PushToHubCallback(\n", " output_dir=\"./clm_from_scratch_model_save\",\n", " tokenizer=tokenizer,\n", " hub_model_id=push_to_hub_model_id,\n", ")\n", "\n", "model.fit(train_set, validation_data=validation_set, epochs=2, callbacks=[callback])" ] }, { "cell_type": "markdown", "metadata": { "id": "3APq-vUc3l_R" }, "source": [ "Once the training is completed, we can evaluate our model and get its loss on the validation set like this:" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "121/121 [==============================] - 6s 51ms/step - loss: 6.3490\n" ] } ], "source": [ "eval_loss = model.evaluate(validation_set)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The quality of language models is often measured in 'perplexity' rather than cross-entropy. To convert to perplexity, we simply raise e to the power of the cross-entropy loss." ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "id": "diKZnB1I3l_R", "outputId": "9b3ac725-0117-4830-f380-a555ee57c8cf" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Perplexity: 571.92\n" ] } ], "source": [ "import math\n", "\n", "print(f\"Perplexity: {math.exp(eval_loss):.2f}\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The perplexity is still quite high since for this demo we trained on a small dataset for a small number of epochs. For a real LM training, you would need a larger dataset and more epochs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you used the callback above, you can now share this model with all your friends, family or favorite pets: they can all load it with the identifier `\"your-username/the-name-you-picked\"` so for instance:\n", "\n", "```python\n", "from transformers import TFAutoModelForCausalLM\n", "\n", "model = TFAutoModelForCausalLM.from_pretrained(\"your-username/my-awesome-model\")\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Inference" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Models trained from scratch on small amounts of data will generally not output useful text - you'll need a much bigger dataset and a much longer training time before it starts writing text that you'd want to read! If you want to see an example of inference with causal language models, see the `language_modeling-tf` notebook, where we start with a pre-trained model and get higher-quality output much sooner as a result." ] }, { "cell_type": "markdown", "metadata": { "id": "q-EIELH43l_T" }, "source": [ "## Masked language modeling" ] }, { "cell_type": "markdown", "metadata": { "id": "LWk97-Ny3l_T" }, "source": [ "For masked language modeling (MLM) we are going to use the same preprocessing as before for our dataset with one additional step: we will randomly mask some tokens (by replacing them by `[MASK]`) and the labels will be adjusted to only include the masked tokens (we don't have to predict the non-masked tokens). If you use a tokenizer you trained yourself, make sure the `[MASK]` token is among the special tokens you passed during training!\n", "\n", "We will use the [`bert-base-cased`](https://huggingface.co/bert-based-cased) model for this example. You can pick any of the checkpoints listed [here](https://huggingface.co/models?filter=masked-lm) instead. For the tokenizer, replace the checkpoint by the one you trained." ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "id": "QRTpmyCc3l_T" }, "outputs": [], "source": [ "model_checkpoint = \"bert-base-cased\"" ] }, { "cell_type": "markdown", "metadata": { "id": "12F1ulgT3l_V" }, "source": [ "We can apply the same tokenization function as before, we just need to update our tokenizer to use the checkpoint we just picked:" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "id": "h8RCYcvr3l_V", "outputId": "a5ffeb0a-71da-4b27-e57a-c62f1927562e" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "Token indices sequence length is longer than the specified maximum sequence length for this model (571 > 512). Running this sequence through the model will result in indexing errors\n", "Token indices sequence length is longer than the specified maximum sequence length for this model (554 > 512). Running this sequence through the model will result in indexing errors\n", "Token indices sequence length is longer than the specified maximum sequence length for this model (522 > 512). Running this sequence through the model will result in indexing errors\n", "Token indices sequence length is longer than the specified maximum sequence length for this model (657 > 512). Running this sequence through the model will result in indexing errors\n", "Token indices sequence length is longer than the specified maximum sequence length for this model (514 > 512). Running this sequence through the model will result in indexing errors\n" ] } ], "source": [ "tokenizer = AutoTokenizer.from_pretrained(model_checkpoint)\n", "tokenized_datasets = datasets.map(\n", " tokenize_function, batched=True, num_proc=4, remove_columns=[\"text\"]\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "MTuy8UUs3l_X" }, "source": [ "And like before, we group texts together and chunk them in samples of length `block_size`. You can skip that step if your dataset is composed of individual sentences." ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "id": "LVYPMwEs3l_X", "outputId": "e71ed7f1-b182-4643-a8fb-3d731c70e40b" }, "outputs": [], "source": [ "lm_datasets = tokenized_datasets.map(\n", " group_texts,\n", " batched=True,\n", " batch_size=1000,\n", " num_proc=4,\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "nFJ49iHJ3l_Z" }, "source": [ "The rest is very similar to what we used before, with two exceptions. First we use a model suitable for masked LM:" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "id": "PM10A9Za3l_Z", "outputId": "fff2d5bb-397d-4d5d-9aa9-933090cb6680" }, "outputs": [], "source": [ "from transformers import AutoConfig, TFAutoModelForMaskedLM\n", "\n", "config = AutoConfig.from_pretrained(model_checkpoint)\n", "model = TFAutoModelForMaskedLM.from_config(config)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We redefine our hyperparameters and choose a new name:" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "id": "YbSwEhQ63l_L" }, "outputs": [], "source": [ "learning_rate = 2e-5\n", "weight_decay = 0.01\n", "push_to_hub_model_id = f\"{model_checkpoint}-wikitext2\"" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now we initialize our optimizer." ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [], "source": [ "from transformers import AdamWeightDecay\n", "\n", "optimizer = AdamWeightDecay(learning_rate=learning_rate, weight_decay_rate=weight_decay)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And as before, we leave the `loss` argument blank to use the internal loss, and use `jit_compile` to enable XLA." ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "No loss specified in compile() - the model's internal loss computation will be used as the loss. Don't panic - this is a common way to train TensorFlow models in Transformers! Please ensure your labels are passed as keys in the input dict so that they are accessible to the model during the forward pass. To disable this behaviour, please pass a loss argument, or explicitly pass loss=None if you do not want your model to compute a loss.\n" ] } ], "source": [ "import tensorflow as tf\n", "\n", "model.compile(optimizer=optimizer, jit_compile=True)" ] }, { "cell_type": "markdown", "metadata": { "id": "z6uuUnvz3l_b" }, "source": [ "Finally, we use a special `data_collator`. The `data_collator` is a function that is responsible for taking the samples and batching them in tensors. In the previous example, we had nothing special to do, so we just used the default for this argument. Here we want to randomly mask tokens. We could do it as a pre-processing step (like the tokenization) but then the tokens would always be masked the same way at each epoch. By doing this step inside the `data_collator`, we ensure this random masking is done in a new way each time we go over the data.\n", "\n", "To do this masking for us, the library provides a `DataCollatorForLanguageModeling`. We can adjust the probability of the masking. Note that our data collators are designed to work for multiple frameworks, so ensure you set the `return_tensors='np'` argument to get NumPy arrays out - you don't want to accidentally get a load of `torch.Tensor` objects in the middle of your nice TF code! You could also use `return_tensors='tf'` to get TensorFlow tensors, but our TF dataset pipeline actually uses a NumPy loader internally, which is wrapped at the end with a `tf.data.Dataset`. As a result, `np` is usually more reliable and performant when you're using it!" ] }, { "cell_type": "code", "execution_count": 31, "metadata": { "id": "nRZ-5v_P3l_b" }, "outputs": [], "source": [ "from transformers import DataCollatorForLanguageModeling\n", "\n", "data_collator = DataCollatorForLanguageModeling(\n", " tokenizer=tokenizer, mlm_probability=0.15, return_tensors=\"np\"\n", ")" ] }, { "cell_type": "markdown", "metadata": { "id": "bqHnWcYC3l_d" }, "source": [ "Now we pass our data collator to the `prepare_tf_dataset()` argument." ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "train_set = model.prepare_tf_dataset(\n", " lm_datasets[\"train\"],\n", " shuffle=True,\n", " batch_size=16,\n", " collate_fn=data_collator,\n", ")\n", "\n", "validation_set = model.prepare_tf_dataset(\n", " lm_datasets[\"validation\"],\n", " shuffle=False,\n", " batch_size=16,\n", " collate_fn=data_collator,\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And now we can train our model:" ] }, { "cell_type": "code", "execution_count": 37, "metadata": { "id": "V-Y3gNqV3l_d" }, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/home/matt/PycharmProjects/notebooks/examples/mlm_from_scratch_model_save is already a clone of https://huggingface.co/Rocketknight1/bert-base-cased-finetuned-wikitext2. Make sure you pull the latest changes with `repo.git_pull()`.\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Epoch 1/2\n", " 6/1172 [..............................] - ETA: 2:36 - loss: 9.9268WARNING:tensorflow:Callback method `on_train_batch_end` is slow compared to the batch time (batch time: 0.0903s vs `on_train_batch_end` time: 0.1139s). Check your callbacks.\n", "1172/1172 [==============================] - 197s 159ms/step - loss: 7.0794 - val_loss: 6.5111\n", "Epoch 2/2\n", "1172/1172 [==============================] - 186s 159ms/step - loss: 6.4127 - val_loss: 6.2672\n" ] }, { "data": { "text/plain": [ "<keras.callbacks.History at 0x7f099c703e80>" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from transformers.keras_callbacks import PushToHubCallback\n", "from tensorflow.keras.callbacks import TensorBoard\n", "\n", "model_name = model_checkpoint.split(\"/\")[-1]\n", "push_to_hub_model_id = f\"{model_name}-finetuned-wikitext2\"\n", "\n", "tensorboard_callback = TensorBoard(log_dir=\"./mlm_from_scratch_model_save/logs\")\n", "\n", "push_to_hub_callback = PushToHubCallback(\n", " output_dir=\"./mlm_from_scratch_model_save\",\n", " tokenizer=tokenizer,\n", " hub_model_id=push_to_hub_model_id,\n", ")\n", "\n", "callbacks = [tensorboard_callback, push_to_hub_callback]\n", "\n", "model.fit(train_set, validation_data=validation_set, epochs=2, callbacks=callbacks)" ] }, { "cell_type": "markdown", "metadata": { "id": "KDBi0reX3l_g" }, "source": [ "Like before, we can evaluate our model on the validation set. As training progresses, the perplexity will be much lower for MLM than for the CLM objective because for the MLM objective, we only have to make predictions for the masked tokens (which represent 15% of the total here) while having access to the rest of the tokens. It's thus an easier task for the model." ] }, { "cell_type": "code", "execution_count": 38, "metadata": { "id": "4hSaANqj3l_g", "outputId": "eeeb8727-2e27-4aeb-ac71-c98123214661" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "126/126 [==============================] - 6s 44ms/step - loss: 6.2834\n", "Perplexity: 535.62\n" ] } ], "source": [ "eval_loss = model.evaluate(validation_set)\n", "print(f\"Perplexity: {math.exp(eval_loss):.2f}\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The perplexity is still quite high since for this demo we trained on a small dataset for a small number of epochs. For a real LM training, you would need a larger dataset and more epochs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you used the callback above, you can now share this model with all your friends, family or favorite pets: they can all load it with the identifier `\"your-username/the-name-you-picked\"` so for instance:\n", "\n", "```python\n", "from transformers import TFAutoModelForMaskedLM\n", "\n", "model = TFAutoModelForMaskedLM.from_pretrained(\"your-username/my-awesome-model\")\n", "```" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Inference" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "As with the causal LM above, masked language models trained from scratch on small amounts of data will generally not be very good at their job - you'll need a much bigger dataset and a much longer training time to make a truly useful one! If you want to see an example of inference with masked language models, see the `language_modeling-tf` notebook, where we start with a pre-trained model and get higher-quality output much sooner as a result." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "colab": { "name": "Train a language model", "provenance": [] }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "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.11.3" } }, "nbformat": 4, "nbformat_minor": 1 }