Commit b94cf7fa authored by Julien Chaumond's avatar Julien Chaumond
Browse files

change order

parent 2eaa8b6e
...@@ -448,9 +448,6 @@ def main(): ...@@ -448,9 +448,6 @@ def main():
parser.add_argument( parser.add_argument(
"--model_type", type=str, required=True, help="The model architecture to be trained or fine-tuned.", "--model_type", type=str, required=True, help="The model architecture to be trained or fine-tuned.",
) )
parser.add_argument(
"--should_continue", action="store_true", help="Whether to continue from latest checkpoint in output_dir"
)
# Other parameters # Other parameters
parser.add_argument( parser.add_argument(
...@@ -460,6 +457,10 @@ def main(): ...@@ -460,6 +457,10 @@ def main():
help="An optional input evaluation data file to evaluate the perplexity on (a text file).", help="An optional input evaluation data file to evaluate the perplexity on (a text file).",
) )
parser.add_argument(
"--should_continue", action="store_true", help="Whether to continue from latest checkpoint in output_dir"
)
parser.add_argument( parser.add_argument(
"--model_name_or_path", "--model_name_or_path",
default=None, default=None,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment