Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
Megatron-LM
Commits
3f3ba5e7
Commit
3f3ba5e7
authored
Feb 18, 2021
by
Mostofa Patwary
Browse files
addressed the comments
parent
3d96729a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
megatron/training.py
megatron/training.py
+3
-4
No files found.
megatron/training.py
View file @
3f3ba5e7
...
@@ -317,11 +317,10 @@ def setup_model_and_optimizer(model_provider_func):
...
@@ -317,11 +317,10 @@ def setup_model_and_optimizer(model_provider_func):
assert
args
.
DDP_impl
==
'local'
assert
args
.
DDP_impl
==
'local'
# get model without FP16 and/or TorchDDP wrappers
# get model without FP16 and/or TorchDDP wrappers
unwrapped_model
=
unwrap_model
(
model
)
if
args
.
iteration
==
0
and
len
(
unwrapped_model
)
==
1
\
if
args
.
iteration
==
0
and
hasattr
(
unwrapped_model
,
and
hasattr
(
unwrapped_model
[
0
],
'init_state_dict_from_bert'
):
'init_state_dict_from_bert'
):
print_rank_0
(
"Initializing ICT from pretrained BERT model"
)
print_rank_0
(
"Initializing ICT from pretrained BERT model"
)
unwrapped_model
.
init_state_dict_from_bert
()
unwrapped_model
[
0
]
.
init_state_dict_from_bert
()
if
args
.
fp16
:
if
args
.
fp16
:
optimizer
.
reload_model_params
()
optimizer
.
reload_model_params
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment