File size: 28,875 Bytes
b386992 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 |
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"Currently, this notebook must be run in a NeMo container.\n",
"An example command to launch the container:\n",
"```bash\n",
"docker run --gpus all -it --rm -v <your_nemo_dir>:/NeMo --shm-size=8g -p 8888:8888 -p 6006:6006 --ulimit memlock=-1 --ulimit stack=67108864 <your_nemo_container>\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Update megatron version to the newest.\n",
"!cd /workspace && python -m pip install -e git+https://github.com/NVIDIA/Megatron-LM#egg=megatron-core"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"%cd /NeMo/tutorials/nlp\n",
"BRANCH = 'main'\n",
"import os\n",
"import wget\n",
"import sys\n",
"sys.path.insert(0, \"../..\") # find the local nemo first before the installed nemo"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "42daf8bf",
"metadata": {},
"source": [
"### Introduction\n",
"\n",
"This notebook demonstrates how to apply PEFT in NeMo. For brevity, we have chosen LoRA as the PEFT technique and GPT as the language model, but the same recipe can be used for other PEFT techniques and language models, as described in the [Training](#training) section.\n",
"\n",
" The implementation of LoRA is based on the paper, [LoRA: Low-Rank Adaptation of Large Language Models](https://openreview.net/pdf?id=nZeVKeeFYf9) by Hu et al.\n",
"\n",
"This example demonstrates how to:\n",
"\n",
" 1. Train a LoRA model on a simple Extractive QA task.\n",
" 2. Inspect the trained LoRA model showing the parameters it contains.\n",
" 3. Run inference with the base model with the LoRA parameters."
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "0bfc7709",
"metadata": {},
"source": [
"### Tasks and Datasets\n",
"We will be using LoRA to teach our GPT model to do Extractive Question Answering.\n",
"\n",
"We will be using the [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) reading comprehension dataset, consisting of questions posed by crowd workers on a set of Wikipedia articles, where the answer to every question is a segment of text. More information on [SQuAD](https://rajpurkar.github.io/SQuAD-explorer/) can be found on their website or in their paper by Rajpurkar et. al \"[Know What You Don’t Know: Unanswerable Questions for SQuAD](https://arxiv.org/pdf/1806.03822.pdf)\".\n",
"\n",
"LoRA (and all PEFT tuning) models expect at least two fields in the jsonl files. The `input` field should contain all the tokens necessary for the model to generate the `output`. For example for extractive QA, the `input` should contain the context text as well as the question.\n",
"\n",
"```\n",
"[\n",
" {\"input\": \"User: Context: [CONTEXT_1] Question: [QUESTION_1]\\n\\nAssistant:\", \"output\": [ANSWER_1]},\n",
" {\"input\": \"User: Context: [CONTEXT_2] Question: [QUESTION_2]\\n\\nAssistant:\", \"output\": [ANSWER_2]},\n",
" {\"input\": \"User: Context: [CONTEXT_3] Question: [QUESTION_3]\\n\\nAssistant:\", \"output\": [ANSWER_3]},\n",
"]\n",
"```\n",
"Note that we use keywords in the input like `Context:`, `Question:` to separate the text representing the context and question. We also use the keyword `User:` and end each of the input with `\\n\\nAssistant:` tokens. These are recommended because NeMo's instruction-tuned models are trained with a prefix of `User:` and suffix `\\n\\nAssistant:`."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "0dbd41fd",
"metadata": {},
"outputs": [],
"source": [
"# You can replace DATA_DIR and NEMO_DIR with your own locations\n",
"DATA_DIR = \"data\"\n",
"NEMO_DIR = \".\"\n",
"os.makedirs(DATA_DIR, exist_ok=True)\n",
"SQUAD_DIR = os.path.join(DATA_DIR, \"SQuAD\")\n",
"os.makedirs(SQUAD_DIR, exist_ok=True)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "504a7b40",
"metadata": {},
"source": [
"\n",
"For each dataset we have preprocessing scripts pre-written in NeMo's example directory located in `examples/nlp`. Let's download those now. "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e72a1dc1",
"metadata": {},
"outputs": [],
"source": [
"# download the preprocessing scripts from github for the purpose of this tutorial\n",
"! wget -nc https://raw.githubusercontent.com/NVIDIA/NeMo/{BRANCH}/scripts/dataset_processing/nlp/squad/prompt_learning_squad_preprocessing.py"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "71813919",
"metadata": {},
"source": [
"Now let's down load and process the dataset."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "fa16d8ac",
"metadata": {},
"outputs": [],
"source": [
"# Download the SQuAD dataset\n",
"!wget -nc https://rajpurkar.github.io/SQuAD-explorer/dataset/train-v1.1.json\n",
"!wget -nc https://rajpurkar.github.io/SQuAD-explorer/dataset/dev-v1.1.json\n",
"!mv train-v1.1.json {SQUAD_DIR}\n",
"!mv dev-v1.1.json {SQUAD_DIR}"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "64e3e25b",
"metadata": {},
"outputs": [],
"source": [
"# Preprocess squad data\n",
"!python prompt_learning_squad_preprocessing.py --sft-format --data-dir {SQUAD_DIR}"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b562d1de",
"metadata": {},
"outputs": [],
"source": [
"# What the squad dataset looks like after processing\n",
"! head -200 $SQUAD_DIR/squad_train.jsonl > $SQUAD_DIR/squad_short_train.jsonl\n",
"! head -20 $SQUAD_DIR/squad_val.jsonl > $SQUAD_DIR/squad_short_val.jsonl\n",
"! head -4 $SQUAD_DIR/squad_short_val.jsonl\n",
"! head -4 $SQUAD_DIR/squad_short_train.jsonl"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "2e19c8dc",
"metadata": {},
"source": [
"### Model Config Setup\n",
"Now we will begin setting up the config file needed for PEFT tuning. We use a single config for all supported PEFT methods (LoRA, Adapter, IA3 and P-Tuning, as well as combinations of these). All PEFT methods use the GPT finetuning class `MegatronGPTSFTModel` as the frozen base network, and use the `add_adapter()` method to add adapter weights for PEFT.\n",
"\n",
"Let's create a config object for LoRA training."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "5749c387",
"metadata": {},
"outputs": [],
"source": [
"from omegaconf import OmegaConf\n",
"\n",
"CONFIG_DIR = os.path.join(NEMO_DIR, \"conf\")\n",
"os.makedirs(CONFIG_DIR, exist_ok=True)\n",
"\n",
"# Download the example config file\n",
"wget.download(f'https://raw.githubusercontent.com/NVIDIA/NeMo/{BRANCH}/examples/nlp/language_modeling/tuning/conf/megatron_gpt_finetuning_config.yaml', CONFIG_DIR)\n",
"\n",
"# Load the example config file so we can start editing it\n",
"CONFIG_PATH = os.path.join(CONFIG_DIR, \"megatron_gpt_finetuning_config.yaml\")\n",
"config = OmegaConf.load(CONFIG_PATH)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "ce966bcf",
"metadata": {},
"source": [
"The `config` contains several attributes required by the `MegatronGPTSFTModel`. First we will set the training data path and the validation data path in the config.\n",
"The `config` allows us to set a list of `jsonl` files as training files and sample examples from each file with different probabilities. For simplicity, we are going to use just one training file and thus the sampling probability is set to `1.0`\n",
"\n",
"We can also monitor validation loss from multiple validation files during training. Again for simplicity we will use just one validation file."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "6bb1590f",
"metadata": {},
"outputs": [],
"source": [
"config.model.data.train_ds.file_names = [f\"{SQUAD_DIR}/squad_short_train.jsonl\"]\n",
"config.model.data.train_ds.concat_sampling_probabilities=[1.0]\n",
"config.model.data.validation_ds.file_names = [f\"{SQUAD_DIR}/squad_short_val.jsonl\"]\n",
"config.model.data.validation_ds.names=[\"squad_val\"]"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "f6b7831a",
"metadata": {},
"source": [
"### PEFT Config\n",
"The attribute [config.model.peft](https://github.com/NVIDIA/NeMo/blob/main/examples/nlp/language_modeling/tuning/conf/megatron_gpt_finetuning_config.yaml#L78) contains settings that control the PEFT training method and its related hyperpameters. We currently support `lora`, `adapter`, `ptuning` and `ia3`. We can instruct the training script to use one of these methods by setting the config.model.peft.peft_scheme attribute.\n",
"\n",
"The other hyperparams associated with lora tuning are present in the [config.model.peft.lora_tuning](https://github.com/NVIDIA/NeMo/blob/main/examples/nlp/language_modeling/tuning/conf/megatron_gpt_finetuning_config.yaml#L92) attribute."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "72c9f966",
"metadata": {},
"outputs": [],
"source": [
"config.model.peft.peft_scheme=\"lora\" # we can also set this to adapter or ptuning or ia3\n",
"print(OmegaConf.to_yaml(config.model.peft.lora_tuning))"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "c32e73c3",
"metadata": {},
"source": [
"**Note:** In the original LoRA paper each attention projection (`K`, `Q`, `V` and `O`) can have their own Low-Rank projections. However, NeMo's attention implementation fuses `KQV` into a single projection and thus our LoRA implementation learns a single Low-Rank projection for `KQV` in a combined fashion. We do not support LoRA for the `O` matrix at this point."
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "4e021b24",
"metadata": {},
"source": [
"### Prompt Formatting\n",
"The `config.model.data.train_ds.prompt_template` attribute allows us to further tweak the format of the input and output if needed. In this example, we have already incorporated our format inside the `jsonl` file during preprocessing, so we can keep the `prompt_template` in the config simple. (See previous section on Data Preparation)."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "1b6aa5c7",
"metadata": {},
"outputs": [],
"source": [
"config.model.data.train_ds.prompt_template =\"{input} {output}\""
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "a0d5017e",
"metadata": {},
"source": [
"### Setting the Pretrained GPT Model\n",
"Next we will set the \"base language model\" upon which we will perform LoRA tuning. Obviously, larger base models will have better performance on downstream tasks but for the purposes of this tutorial we will use a small 345M parameter GPT model."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "48cdf868",
"metadata": {},
"outputs": [],
"source": [
"# Check what GPT .nemo models we have available on NGC\n",
"from nemo.collections.nlp.models.language_modeling.megatron_gpt_model import MegatronGPTModel\n",
"megatron_gpt_345m_nemo_url = MegatronGPTModel.list_available_models()[0].location\n",
"megatron_gpt_345m_nemo_url # should point to the 345m megatron gpt model '.nemo' file"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "ede350ed",
"metadata": {},
"source": [
"If we wanted to use the GPT model class directly, we could instantiate a trainer then download the model by calling running \n",
"`gpt_model = MegatronGPTModel.from_pretrained(model_name=\"megatron_gpt_345m\", trainer=trainer).cuda()`. But we just need the `.nemo` file in our working NeMo directory in this tutorial, so we will download it using `wget`. "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "364439a1",
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"# Download the model from NGC\n",
"gpt_file_name = \"megatron_gpt_345m.nemo\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"!wget -nc --content-disposition {megatron_gpt_345m_nemo_url} -O {NEMO_DIR}/{gpt_file_name}"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "1d6a8a67",
"metadata": {},
"source": [
"Now that we have a `.nemo` GPT file to work with. We need to add its path in our prompt learning config. "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "2778a5fa",
"metadata": {},
"outputs": [],
"source": [
"# Set GPT model path on prompt learning config\n",
"config.model.restore_from_path = gpt_file_name"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "943a9c83",
"metadata": {},
"source": [
"Next, we will set where we want to save all the intermediate training logs and checkpoints. As well as other training settings such as: number of training steps, batch size and validation check interval, and num_workers for data processing."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "a278cbdf",
"metadata": {},
"outputs": [],
"source": [
"config.exp_manager.exp_dir=f\"{NEMO_DIR}/peft_lora\"\n",
"config.exp_manager.explicit_log_dir=\"training_info\"\n",
"config.trainer.max_steps=100\n",
"config.model.micro_batch_size=1\n",
"config.model.global_batch_size=4\n",
"config.trainer.val_check_interval=50\n",
"config.model.data.train_ds.num_workers=0 # 0 is recommended which just uses the main thread to process training examples\n",
"config.model.data.validation_ds.num_workers=0 # 0 is recommended which just uses the main thread to process the validation examples"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "a988d16e",
"metadata": {},
"source": [
"Let's have a look at all the values we've set in the model config. You can change any of these values in the same manner we've been using above. "
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "12a37ada",
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"# Final model config\n",
"print(OmegaConf.to_yaml(config.model))"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "4c048852",
"metadata": {},
"source": [
"### Building the PyTorch Lightning Trainer\n",
"NeMo models are primarily PyTorch Lightning modules - and therefore are entirely compatible with the PyTorch Lightning ecosystem.\n",
"\n",
"Let's first instantiate a Trainer object"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "90f85b2a",
"metadata": {},
"outputs": [],
"source": [
"from nemo.collections.nlp.parts.nlp_overrides import NLPDDPStrategy\n",
"import torch\n",
"import lightning.pytorch as pl\n",
"from nemo.collections.nlp.parts.megatron_trainer_builder import MegatronTrainerBuilder\n",
"\n",
"# let's modify some trainer configs\n",
"# check if we have GPU available and uses it\n",
"accelerator = 'gpu' if torch.cuda.is_available() else 'cpu'\n",
"config.trainer.accelerator = accelerator\n",
"config.trainer.devices = 1\n",
"config.trainer.max_epochs = 4\n",
"config.trainer.val_check_interval = 1.0\n",
"\n",
"# for PyTorch Native AMP set precision=16\n",
"config.trainer.precision = 16 if torch.cuda.is_available() else 32\n",
"\n",
"# setup cluster environment parameters\"\n",
"os.environ[\"LOCAL_RANK\"] = '0'\n",
"os.environ[\"RANK\"] = '0'\n",
"os.environ[\"WORLD_SIZE\"] = '1'\n",
"\n",
"trainer = MegatronTrainerBuilder(config).create_trainer()\n",
"\n",
"print(\"Trainer config - \\n\")\n",
"print(OmegaConf.to_yaml(config.trainer))"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "890f0dc5",
"metadata": {},
"outputs": [],
"source": [
"print(OmegaConf.to_yaml(config.exp_manager))"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "4d0124c1",
"metadata": {},
"source": [
"### Setting up a NeMo Experiment\n",
"\n",
"NeMo has an experiment manager that handles logging and checkpointing for us, so let's use it:"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "f2c943ba",
"metadata": {},
"outputs": [],
"source": [
"from nemo.utils.exp_manager import exp_manager\n",
"\n",
"# Set name of the experiment \n",
"config.name = 'lora_example_tuning'\n",
"config.exp_manager.resume_if_exists = False\n",
"\n",
"# Init the experiment manager and view the exp_dir\n",
"exp_dir = exp_manager(trainer, config.get(\"exp_manager\", None))\n",
"exp_dir = str(exp_dir)\n",
"print(exp_dir)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "298b3dce",
"metadata": {},
"source": [
"### Training\n",
"We now set up the process for training a LoRA model. We first require a config that contains details about the base language model upon which we will train our LoRA model. So we first extract the `model_cfg` from the checkpoint and update it with any new settings we employ in our current (LoRA) `config`. These are combined in the `merge_cfg_with` function.\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "edb38445",
"metadata": {},
"outputs": [],
"source": [
"from nemo.collections.nlp.models.language_modeling.megatron_gpt_sft_model import MegatronGPTSFTModel\n",
"\n",
"model_cfg = MegatronGPTSFTModel.merge_cfg_with(config.model.restore_from_path, config)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "dfc55a1c",
"metadata": {},
"source": [
"Next, we instantiate the GPT model class and add the LoRA adapter\n",
"When we call `add_adapter`, the model prints out the parameter count before and after the operation. We can clearly see the number of trainable parameters increase after adding the adapter.\n",
"To print the parameter count manually, we can call `model.summarize()`."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "a81d8741",
"metadata": {},
"outputs": [],
"source": [
"from nemo.collections.nlp.parts.peft_config import LoraPEFTConfig\n",
"\n",
"model = MegatronGPTSFTModel.restore_from(config.model.restore_from_path, model_cfg, trainer=trainer)\n",
"model.add_adapter(LoraPEFTConfig(model_cfg))\n",
"# print(\"Parameter count manually:\\n\", model.summarize())"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"Simply substitute with the `MegatronT5SFTModel` class to use T5 instead of GPT.\n",
"\n",
"To use a different PEFT method, you can use a different config class in place of `LoraPEFTConfig`, such as `CanonicalAdaptersPEFTConfig`, `IA3PEFTConfig`, `PtuningPEFTConfig`. You can also use a combination of the methods by passing in a list:\n",
"`model.add_adapter([LoraPEFTConfig(model_cfg), PtuningPEFTConfig(model_cfg)])`\n",
"\n",
"We're now ready to start training."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "2d99f433",
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"trainer.fit(model)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "b8210d6d",
"metadata": {},
"source": [
"Once training is completed you should see a saved '.nemo' file in this folder `{config.exp_manager.explicit_log_dir}/checkpoints`. This checkpoint will only contain the trained adapter weights, and not the frozen base model weights."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e4e19e65",
"metadata": {},
"outputs": [],
"source": [
"# The trained '.nemo' model is saved in the location below:\n",
"! ls -lh {config.exp_manager.explicit_log_dir}/checkpoints\n",
"print(config.exp_manager.explicit_log_dir)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "6aab09d4",
"metadata": {},
"source": [
"### Inference\n",
"The model object from `trainer.fit(model)` is also capable of doing inference. For the tutorial, however, we will re-load the saved `.nemo` lora model along with a `.nemo` base language model to simulate a more realistic scenario (where training does not happen right before inference).\n",
"\n",
"Run the cell below to reimport libraries and classes in case you did not run the training cells above."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# reimport libraries and classes in case one wants to only run cells from the Inference section\n",
"%cd /NeMo/tutorials/nlp\n",
"import wget, os, sys\n",
"sys.path.insert(0, \"../..\") # find the local nemo first before the installed nemo\n",
"from omegaconf import OmegaConf\n",
"from nemo.collections.nlp.parts.megatron_trainer_builder import MegatronTrainerBuilder\n",
"from nemo.collections.nlp.parts.peft_config import LoraPEFTConfig\n",
"from nemo.collections.nlp.models.language_modeling.megatron_gpt_sft_model import MegatronGPTSFTModel\n",
"\n",
"NEMO_DIR = \".\"\n",
"DATA_DIR = \"data\"\n",
"CONFIG_DIR = os.path.join(NEMO_DIR, \"conf\")\n",
"SQUAD_DIR = os.path.join(DATA_DIR, \"SQuAD\")\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"First, we will load and modify a config file that will be used for inference.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"# Download the example config file\n",
"wget.download(f'https://raw.githubusercontent.com/NVIDIA/NeMo/{BRANCH}/examples/nlp/language_modeling/tuning/conf/megatron_gpt_generate_config.yaml', CONFIG_DIR)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "41ab98a9",
"metadata": {},
"outputs": [],
"source": [
"# Load the example config file so we can start editing it\n",
"CONFIG_EVAL_PATH = os.path.join(CONFIG_DIR, \"megatron_gpt_generate_config.yaml\")\n",
"config_eval = OmegaConf.load(CONFIG_EVAL_PATH)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "36c58c18",
"metadata": {},
"source": [
"We are going to modify the `config_eval` object that we created above. We will set the base language model as the `345m` model we downloaded earlier.\n",
"\n",
"Additionally, we will also set the `model.peft.restore_from_path` with the lora model we just trained. For the tutorial we will just use the validation data for inference as well."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "64a4e71a",
"metadata": {},
"outputs": [],
"source": [
"config_eval.model.restore_from_path=\"megatron_gpt_345m.nemo\"\n",
"config_eval.model.peft.restore_from_path=\"./training_info/checkpoints/lora_example_tuning.nemo\"\n",
"config_eval.model.data.test_ds.file_names=[f\"{SQUAD_DIR}/squad_short_val.jsonl\"]\n",
"config_eval.model.data.test_ds.names=[\"test_set\"]\n",
"config_eval.model.data.test_ds.global_batch_size=1\n",
"config_eval.model.data.test_ds.micro_batch_size=1\n",
"config_eval.model.data.test_ds.tokens_to_generate=30\n",
"config_eval.inference.greedy=True"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "d8ace8f9",
"metadata": {},
"outputs": [],
"source": [
"trainer_eval = MegatronTrainerBuilder(config_eval).create_trainer()"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "e745ac5e",
"metadata": {},
"source": [
"The `config_eval` object is the hydra config at \"inference/test time\". This means it should contain information relevant for inference/test time, although some properties that were set at training time are still relevant. For example, whether training was done with `BOS` enabled or not, and other model specific attributes.\n",
"\n",
"So we extract the relevant information from the '.nemo' file of the lora model we just trained using the `merge_inference_cfg` function."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e04a2201",
"metadata": {},
"outputs": [],
"source": [
"eval_model_cfg = MegatronGPTSFTModel.merge_inference_cfg(config_eval.model.peft.restore_from_path, config_eval)"
]
},
{
"cell_type": "markdown",
"metadata": {
"collapsed": false
},
"source": [
"The cell below is required if you are running the notebook end-to-end, and if you use a different batch size for training and evaluation. In this case, the microbatch calculator needs to be rest. If you are running training only or inference only, feel free to ignore this cell."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"from megatron.core.num_microbatches_calculator import reconfigure_num_microbatches_calculator\n",
"reconfigure_num_microbatches_calculator(\n",
" rank=0,\n",
" rampup_batch_size=None,\n",
" global_batch_size=config_eval.model.global_batch_size,\n",
" micro_batch_size=config_eval.model.micro_batch_size,\n",
" data_parallel_size=1,\n",
")"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "132ae378",
"metadata": {},
"source": [
"Then, we load the base language model as well as the lora model we just trained."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "b19cd0ce",
"metadata": {},
"outputs": [],
"source": [
"model_eval = MegatronGPTSFTModel.restore_from(config_eval.model.restore_from_path, eval_model_cfg, trainer=trainer_eval)\n",
"model_eval.load_adapters(config_eval.model.peft.restore_from_path, LoraPEFTConfig(eval_model_cfg))\n",
"model_eval.freeze()\n",
"\n",
"print(\"Parameter count manually:\\n\", model_eval.summarize())"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "012439d9",
"metadata": {},
"source": [
"Next, we prepare the dataset and the dataloader objects that the model will perform inference on."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "12c390f8",
"metadata": {},
"outputs": [],
"source": [
"_test_ds = model_eval._build_dataset(eval_model_cfg.data.test_ds, is_train=False)\n",
"from torch.utils.data import DataLoader\n",
"request_dl = DataLoader(\n",
" dataset=_test_ds[0],\n",
" batch_size=eval_model_cfg.data.test_ds.global_batch_size,\n",
" collate_fn=_test_ds[0].collate_fn,\n",
")\n",
"config_inference = OmegaConf.to_container(config_eval.inference, resolve=True)\n",
"model_eval.set_inference_config(config_inference)"
]
},
{
"attachments": {},
"cell_type": "markdown",
"id": "76592a1e",
"metadata": {},
"source": [
"And finally, we call `trainer.predict` which triggers the inference process. The `response` object contains the outputs of the model."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "5ba6a70c",
"metadata": {},
"outputs": [],
"source": [
"response = trainer_eval.predict(model_eval, request_dl)\n",
"for batch in response:\n",
" for s in batch['sentences']:\n",
" print(f\"{s}\\n\\n\")"
]
}
],
"metadata": {
"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.8.16"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
|