| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import torch.multiprocessing as mp |
| from omegaconf.omegaconf import OmegaConf, open_dict |
| from pytorch_lightning import Trainer |
| from pytorch_lightning.plugins.environments import TorchElasticEnvironment |
|
|
| from nemo.collections.nlp.models.language_modeling.megatron_gpt_prompt_learning_model import ( |
| MegatronGPTPromptLearningModel, |
| ) |
| from nemo.collections.nlp.parts.nlp_overrides import ( |
| GradScaler, |
| MegatronHalfPrecisionPlugin, |
| NLPDDPStrategy, |
| NLPSaveRestoreConnector, |
| PipelineMixedPrecisionPlugin, |
| ) |
| from nemo.core.config import hydra_runner |
| from nemo.utils import logging |
| from nemo.utils.exp_manager import exp_manager |
|
|
| mp.set_start_method("spawn", force=True) |
|
|
| """ |
| This is an example of how to ptune/prompt-tune a pretrained GPT model. |
| Be sure to use a .nemo gpt model with this code. If you've downloaded |
| a model from NGC or are otherwise using a MegatronLM model, please use |
| either megatron_ckpt_to_nemo.py or megatron_lm_ckpt_to_nemo.py found |
| withing this examples directory to convert your model to .nemo format. |
| """ |
|
|
|
|
| @hydra_runner(config_path="conf", config_name="megatron_gpt_prompt_learning_config") |
| def main(cfg) -> None: |
| logging.info("\n\n************** Experiment configuration ***********") |
| logging.info(f'\n{OmegaConf.to_yaml(cfg)}') |
|
|
| megatron_amp_o2 = cfg.model.get('megatron_amp_O2', False) |
|
|
| plugins = [] |
| strategy = NLPDDPStrategy(no_ddp_communication_hook=True, find_unused_parameters=False,) |
| if cfg.trainer.precision in [16, 'bf16']: |
| scaler = None |
| if cfg.trainer.precision == 16: |
| scaler = GradScaler( |
| init_scale=cfg.model.get('native_amp_init_scale', 2 ** 32), |
| growth_interval=cfg.model.get('native_amp_growth_interval', 1000), |
| hysteresis=cfg.model.get('hysteresis', 2), |
| enabled=False |
| if cfg.model.pipeline_model_parallel_size > 1 |
| else True, |
| ) |
| if megatron_amp_o2: |
| plugins.append(MegatronHalfPrecisionPlugin(precision=cfg.trainer.precision, device='cuda', scaler=scaler)) |
| else: |
| plugins.append(PipelineMixedPrecisionPlugin(precision=cfg.trainer.precision, device='cuda', scaler=scaler)) |
|
|
| if cfg.get('cluster_type', None) == 'BCP': |
| plugins.append(TorchElasticEnvironment()) |
|
|
| trainer = Trainer(plugins=plugins, strategy=strategy, **cfg.trainer) |
| exp_manager(trainer, cfg.exp_manager) |
|
|
| |
| with open_dict(cfg): |
| cfg.model.precision = cfg.trainer.precision |
|
|
| |
| if cfg.model.get("restore_path", None): |
| model = MegatronGPTPromptLearningModel.restore_from( |
| cfg.model.restore_path, cfg.model, trainer=trainer, save_restore_connector=NLPSaveRestoreConnector() |
| ) |
| else: |
| model = MegatronGPTPromptLearningModel(cfg.model, trainer=trainer) |
|
|
| trainer.fit(model) |
|
|
|
|
| if __name__ == '__main__': |
| main() |
|
|