-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mistral-NeMo-12B recipe #10607
Merged
Merged
Mistral-NeMo-12B recipe #10607
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
46ae1e6
Mistral-NeMo-12B recipe
akoumpa a6edc8f
rename mistral to mistral_7b
akoumpa 274e8d8
include mistral_nemo_12b in __init__
akoumpa 8ed2784
Apply isort and black reformatting
akoumpa da983d3
add to __init__
akoumpa 8846cb2
Apply isort and black reformatting
akoumpa b6e9ed2
Remove stale imports
akoumpa 8e2db69
TP=2
akoumpa 1a9857f
remove finetune_reci[e
akoumpa 71ffc05
Rename MistralNeMo2407Config12B to MistralNeMoConfig12B per review's …
akoumpa 448336d
update config names in tests
akoumpa 12181ad
mistral-nemo-12b from llama_8b
akoumpa 7083c86
TP=2; SP=True
akoumpa c9cb42b
fix overlap value
akoumpa f78c1f1
Apply isort and black reformatting
akoumpa 9d959f6
update mistral-nemo-base-12b finetune recipe
akoumpa 9bd3ad4
Apply isort and black reformatting
akoumpa d3b87c0
fix test import
akoumpa 4b02e69
fix
akoumpa 5fb1ce4
typo
akoumpa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,285 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
from typing import Callable, Optional | ||
|
||
import nemo_run as run | ||
import pytorch_lightning as pl | ||
import torch | ||
from megatron.core.distributed import DistributedDataParallelConfig | ||
from pytorch_lightning.callbacks.callback import Callback | ||
|
||
from nemo import lightning as nl | ||
from nemo.collections.llm.api import finetune, pretrain | ||
from nemo.collections.llm.gpt.data.mock import MockDataModule | ||
from nemo.collections.llm.gpt.data.squad import SquadDataModule | ||
from nemo.collections.llm.gpt.model.mistral import MistralModel, MistralNeMoConfig12B | ||
from nemo.collections.llm.peft.lora import LoRA | ||
|
||
from nemo.collections.llm.recipes.finetune_default import default_finetune_recipe | ||
from nemo.collections.llm.recipes.log.default import default_log, default_resume, tensorboard_logger | ||
from nemo.collections.llm.recipes.optim.adam import distributed_fused_adam_with_cosine_annealing | ||
from nemo.collections.llm.recipes.precision.mixed_precision import bf16_mixed | ||
from nemo.lightning.pytorch.callbacks.megatron_comm_overlap import MegatronCommOverlapCallback | ||
from nemo.utils.exp_manager import TimingCallback | ||
|
||
NAME = "mistral_nemo_base_12b" | ||
|
||
|
||
@run.cli.factory(name=NAME) | ||
def model() -> run.Config[pl.LightningModule]: | ||
""" | ||
Factory function to create a Mistral-Nemo-Base-12B model configuration. | ||
|
||
Returns: | ||
run.Config[pl.LightningModule]: Configuration for the Mistral-Nemo-Base-12B model. | ||
|
||
Examples: | ||
CLI usage: | ||
$ nemo llm pretrain model=mistral_nemo_base_12b ... | ||
|
||
Python API usage: | ||
>>> model_config = model() | ||
>>> print(model_config) | ||
""" | ||
return run.Config(MistralModel, config=run.Config(MistralNeMoConfig12B)) | ||
|
||
|
||
def trainer( | ||
tensor_parallelism: int = 2, | ||
pipeline_parallelism: int = 1, | ||
pipeline_parallelism_type: Optional[torch.dtype] = None, | ||
virtual_pipeline_parallelism: Optional[int] = None, | ||
context_parallelism: int = 2, | ||
sequence_parallelism: bool = True, | ||
num_nodes: int = 1, | ||
num_gpus_per_node: int = 8, | ||
max_steps: int = 1168251, | ||
callbacks: Optional[list[run.Config[Callback]]] = None, | ||
) -> run.Config[nl.Trainer]: | ||
""" | ||
Configure the NeMo Lightning Trainer for Mistral-Nemo-Base-12B model. | ||
|
||
This function sets up the distributed training strategy and other training parameters. | ||
|
||
Args: | ||
tensor_parallelism (int): Degree of tensor model parallelism. | ||
pipeline_parallelism (int): Degree of pipeline model parallelism. | ||
pipeline_parallelism_type (Optional[torch.dtype]): Data type for pipeline parallelism. | ||
virtual_pipeline_parallelism (Optional[int]): Size of virtual pipeline parallelism. | ||
context_parallelism (int): Degree of context parallelism. | ||
sequence_parallelism (bool): Whether to use sequence parallelism. | ||
num_nodes (int): Number of compute nodes to use. | ||
num_gpus_per_node (int): Number of GPUs per node. | ||
max_steps (int): Maximum number of training steps. | ||
callbacks (Optional[list[run.Config[Callback]]]): List of callback configurations. | ||
|
||
Returns: | ||
run.Config[nl.Trainer]: Configuration for the NeMo Lightning Trainer. | ||
|
||
Examples: | ||
CLI usage: | ||
$ nemo llm pretrain trainer=mistral_nemo_base_12b ... | ||
|
||
Python API usage: | ||
>>> trainer_config = trainer(num_nodes=2, num_gpus_per_node=8) | ||
>>> print(trainer_config) | ||
|
||
Note: | ||
For more information on distributed training strategies, refer to the | ||
NeMo documentation on multi-GPU and multi-node training. | ||
""" | ||
strategy = run.Config( | ||
nl.MegatronStrategy, | ||
tensor_model_parallel_size=tensor_parallelism, | ||
pipeline_model_parallel_size=pipeline_parallelism, | ||
pipeline_dtype=pipeline_parallelism_type, | ||
virtual_pipeline_model_parallel_size=virtual_pipeline_parallelism, | ||
context_parallel_size=context_parallelism, | ||
sequence_parallel=sequence_parallelism, | ||
gradient_as_bucket_view=True, | ||
ckpt_async_save=True, | ||
ckpt_parallel_load=True, | ||
ddp=run.Config( | ||
DistributedDataParallelConfig, | ||
check_for_nan_in_grad=True, | ||
grad_reduce_in_fp32=True, | ||
overlap_grad_reduce=True, | ||
overlap_param_gather=True, | ||
), | ||
) | ||
|
||
trainer = run.Config( | ||
nl.Trainer, | ||
accelerator="gpu", | ||
accumulate_grad_batches=1, | ||
callbacks=callbacks, | ||
devices=num_gpus_per_node, | ||
limit_test_batches=50, | ||
limit_val_batches=32, | ||
log_every_n_steps=10, | ||
max_steps=max_steps, | ||
num_nodes=num_nodes, | ||
plugins=bf16_mixed(), | ||
strategy=strategy, | ||
use_distributed_sampler=False, | ||
val_check_interval=2000, | ||
) | ||
|
||
return trainer | ||
|
||
|
||
@run.cli.factory(target=pretrain, name=NAME) | ||
def pretrain_recipe( | ||
dir: Optional[str] = None, name: str = "default", num_nodes: int = 1, num_gpus_per_node: int = 8, fn=pretrain | ||
) -> run.Partial: | ||
""" | ||
Create a pre-training recipe for Mistral-Nemo-Base-12B model. | ||
|
||
This function sets up a complete configuration for pre-training, including | ||
model, trainer, data, logging, optimization, and resumption settings. | ||
|
||
Args: | ||
dir (Optional[str]): Directory for saving logs and checkpoints. | ||
name (str): Name of the pre-training run. | ||
num_nodes (int): Number of compute nodes to use. | ||
num_gpus_per_node (int): Number of GPUs per node. | ||
fn (Callable): The pre-training function to use. | ||
|
||
Returns: | ||
run.Partial: Partial configuration for pre-training. | ||
|
||
Examples: | ||
CLI usage: | ||
$ nemo llm pretrain --factory mistral_nemo_base_12b | ||
$ nemo llm pretrain --factory "mistral_nemo_base_12b(num_nodes=2, name='my_pretrain')" | ||
|
||
Python API usage: | ||
>>> recipe = pretrain_recipe(name="mistral_nemo_base_12b", num_nodes=2) | ||
>>> print(recipe) | ||
|
||
Note: | ||
For more details on pre-training LLMs with NeMo, see the pre-training | ||
guide in the `examples/llm/pretrain/` directory. | ||
""" | ||
return run.Partial( | ||
fn, | ||
model=model(), | ||
trainer=trainer( | ||
num_nodes=num_nodes, | ||
num_gpus_per_node=num_gpus_per_node, | ||
callbacks=[run.Config(TimingCallback)], | ||
), | ||
data=run.Config(MockDataModule, seq_length=8192, global_batch_size=512, micro_batch_size=1), | ||
log=default_log(dir=dir, name=name, tensorboard_logger=tensorboard_logger(name=name)), | ||
optim=distributed_fused_adam_with_cosine_annealing(max_lr=3e-4), | ||
resume=default_resume(), | ||
) | ||
|
||
|
||
@run.cli.factory(target=pretrain, name=NAME + "_optimized") | ||
def pretrain_recipe_performance( | ||
dir: Optional[str] = None, | ||
name: str = "default", | ||
num_nodes: int = 1, | ||
num_gpus_per_node: int = 8, | ||
fn: Callable = pretrain, | ||
) -> run.Partial: | ||
""" | ||
Create a performance-optimized pre-training recipe for Mistral-Nemo-Base-12B model. | ||
|
||
This recipe enables performance optimizations that may not be suitable for all use cases. | ||
It builds upon the standard pre-training recipe and adds additional performance enhancements. | ||
|
||
Args: | ||
dir (Optional[str]): Directory for saving logs and checkpoints. | ||
name (str): Name of the pre-training run. | ||
num_nodes (int): Number of compute nodes to use. | ||
num_gpus_per_node (int): Number of GPUs per node. | ||
fn (Callable): The pre-training function to use. | ||
|
||
Returns: | ||
run.Partial: Partial configuration for performance-optimized pre-training. | ||
|
||
Examples: | ||
$ nemo llm pretrain --factory mistral_nemo_base_12b_optimized | ||
|
||
Python API usage: | ||
>>> recipe = pretrain_recipe_performance(name="mistral_nemo_base_12b_perf", num_nodes=4) | ||
>>> print(recipe) | ||
|
||
Note: | ||
Use this recipe with caution and only when you need maximum performance. | ||
It may not be suitable for all hardware configurations or use cases. | ||
""" | ||
recipe = pretrain_recipe(name=name, dir=dir, num_nodes=num_nodes, num_gpus_per_node=num_gpus_per_node, fn=fn) | ||
|
||
recipe.trainer.callbacks.append( | ||
run.Config( | ||
MegatronCommOverlapCallback, | ||
tp_comm_overlap=True, | ||
) | ||
) | ||
return recipe | ||
|
||
|
||
@run.cli.factory(target=finetune, name=NAME) | ||
def finetune_recipe( | ||
akoumpa marked this conversation as resolved.
Show resolved
Hide resolved
|
||
dir: Optional[str] = None, | ||
name: str = "default", | ||
num_nodes: int = 1, | ||
num_gpus_per_node: int = 8, | ||
peft_scheme: Optional[str] = 'lora', | ||
) -> run.Partial: | ||
""" | ||
Create a fine-tuning recipe for Mistral-Nemo-Base-12B model. | ||
|
||
This function sets up a complete configuration for fine-tuning, including | ||
model, trainer, data, logging, optimization, and resumption settings. | ||
The recipe uses LoRA (Low-Rank Adaptation) for efficient fine-tuning, unless peft_scheme is set to None. | ||
|
||
Args: | ||
dir (Optional[str]): Directory for saving logs and checkpoints. | ||
name (str): Name of the fine-tuning run. | ||
num_nodes (int): Number of compute nodes to use. | ||
num_gpus_per_node (int): Number of GPUs per node. | ||
peft_scheme (Optional[str]): Name of the peft scheme to use for fine-tuning. Allowed values: 'lora', 'none'/None. | ||
|
||
Returns: | ||
run.Partial: Partial configuration for fine-tuning. | ||
|
||
Examples: | ||
CLI usage: | ||
$ nemo llm finetune --factory mistral_nemo_base_12b | ||
|
||
Python API usage: | ||
>>> recipe = finetune_recipe(name="mistral_nemo_base_12b_finetune", num_nodes=2) | ||
>>> print(recipe) | ||
|
||
Note: | ||
This recipe uses the SQuAD dataset for fine-tuning. For more information | ||
on fine-tuning LLMs with NeMo, see the fine-tuning guide in the | ||
`examples/llm/finetune/` directory. | ||
""" | ||
recipe = default_finetune_recipe( | ||
model(), "mistralai/Mistral-Nemo-Base-2407", dir, name, num_nodes, num_gpus_per_node | ||
) | ||
if peft_scheme is None or peft_scheme.lower() == 'none': | ||
recipe.optim.config.lr = 5e-6 | ||
elif peft_scheme.lower() == 'lora': | ||
recipe.peft = run.Config(LoRA, target_modules=['linear_qkv', 'linear_proj'], dim=32) | ||
recipe.optim.config.lr = 1e-4 | ||
else: | ||
raise ValueError(f"Unrecognized peft scheme: {peft_scheme}") | ||
return recipe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / CodeQL
Unused import Note