Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
style: typo in help argument (#5074)
Browse files Browse the repository at this point in the history
  • Loading branch information
guspan-tanadi committed Oct 10, 2023
1 parent 2ce94e6 commit cd23e37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions parlai/agents/transformer/transformer.py
Expand Up @@ -66,7 +66,7 @@ def add_common_cmdline_args(parser):
'--dropout',
type=float,
default=0.0,
help='Dropout used around embeddings and before layer layer normalizations. '
help='Dropout used around embeddings and before layer normalizations. '
'This is used in Vaswani 2017 and works well on large datasets.',
)
parser.add_argument(
Expand Down Expand Up @@ -142,14 +142,14 @@ def add_common_cmdline_args(parser):
'--n-encoder-layers',
type=int,
default=-1,
help='This will overidde the n-layers for asymmetrical transformers',
help='This will override the n-layers for asymmetrical transformers',
)
parser.add_argument(
'-ndl',
'--n-decoder-layers',
type=int,
default=-1,
help='This will overidde the n-layers for asymmetrical transformers',
help='This will override the n-layers for asymmetrical transformers',
)
parser.add_argument(
'--model-parallel',
Expand Down

0 comments on commit cd23e37

Please sign in to comment.