forked from NVIDIA/NeMo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding distributed training functionality in bert embedding model and… (
NVIDIA#9822) * Adding distributed training functionality in bert embedding model and adding a embedding generation script Signed-off-by: adityavavre <avavre@nvidia.com> * Apply isort and black reformatting Signed-off-by: adityavavre <adityavavre@users.noreply.github.com> * Removing unused import Signed-off-by: adityavavre <avavre@nvidia.com> * Removing apex dependency Signed-off-by: adityavavre <avavre@nvidia.com> * Apply isort and black reformatting Signed-off-by: adityavavre <adityavavre@users.noreply.github.com> * Adding new arguments to bert mebedding config Signed-off-by: adityavavre <avavre@nvidia.com> * Adding constrastive score clamping and editing config Signed-off-by: adityavavre <avavre@nvidia.com> * Adding sampling feature for hard negatives in bert embedding dataset Signed-off-by: adityavavre <avavre@nvidia.com> * Removing unecessary seed Signed-off-by: adityavavre <avavre@nvidia.com> --------- Signed-off-by: adityavavre <avavre@nvidia.com> Signed-off-by: adityavavre <adityavavre@users.noreply.github.com> Co-authored-by: adityavavre <adityavavre@users.noreply.github.com> Co-authored-by: Ali Taghibakhshi <71892896+JRD971000@users.noreply.github.com>
- Loading branch information
1 parent
72f630d
commit 558cf2e
Showing
5 changed files
with
324 additions
and
29 deletions.
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
56 changes: 56 additions & 0 deletions
56
examples/nlp/information_retrieval/megatron_bert_embedding_generate.py
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,56 @@ | ||
# Copyright (c) 2021, 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. | ||
|
||
import torch.multiprocessing as mp | ||
from omegaconf.omegaconf import OmegaConf, open_dict | ||
|
||
from nemo.collections.nlp.models.information_retrieval.megatron_bert_embedding_model import MegatronBertEmbeddingModel | ||
from nemo.collections.nlp.parts.megatron_trainer_builder import MegatronBertTrainerBuilder | ||
from nemo.collections.nlp.parts.nlp_overrides import NLPSaveRestoreConnector | ||
from nemo.core.config import hydra_runner | ||
from nemo.utils import logging | ||
from nemo.utils.exp_manager import exp_manager | ||
|
||
|
||
@hydra_runner(config_path="conf", config_name="megatron_bert_embedding_config") | ||
def main(cfg) -> None: | ||
if cfg.model.data.dataloader_type != "LDDL": | ||
mp.set_start_method("spawn", force=True) | ||
|
||
logging.info("\n\n************** Experiment configuration ***********") | ||
logging.info(f'\n{OmegaConf.to_yaml(cfg)}') | ||
|
||
trainer = MegatronBertTrainerBuilder(cfg).create_trainer() | ||
exp_manager(trainer, cfg.exp_manager) | ||
|
||
model_cfg = MegatronBertEmbeddingModel.merge_cfg_with(cfg.restore_from_path, cfg) | ||
|
||
OmegaConf.set_struct(model_cfg, True) | ||
with open_dict(model_cfg): | ||
model_cfg.precision = trainer.precision | ||
|
||
logging.info(f"Loading model from {cfg.restore_from_path}") | ||
model = MegatronBertEmbeddingModel.restore_from( | ||
restore_path=cfg.restore_from_path, | ||
trainer=trainer, | ||
save_restore_connector=NLPSaveRestoreConnector(), | ||
override_config_path=model_cfg, | ||
strict=True, | ||
) | ||
|
||
trainer.test(model) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
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.