Unverified Commit 5fe36970 authored by Phuc Van Phan's avatar Phuc Van Phan Committed by GitHub
Browse files

Adding more information in help parser on train_file and validation_file (#25324)

chorse: adding new doc on train and val
parent baf1daa5
...@@ -82,10 +82,10 @@ def parse_args(): ...@@ -82,10 +82,10 @@ def parse_args():
help="The configuration name of the dataset to use (via the datasets library).", help="The configuration name of the dataset to use (via the datasets library).",
) )
parser.add_argument( parser.add_argument(
"--train_file", type=str, default=None, help="A csv or a json file containing the training data." "--train_file", type=str, default=None, help="A csv, txt or a json file containing the training data."
) )
parser.add_argument( parser.add_argument(
"--validation_file", type=str, default=None, help="A csv or a json file containing the validation data." "--validation_file", type=str, default=None, help="A csv, txt or a json file containing the validation data."
) )
parser.add_argument( parser.add_argument(
"--validation_split_percentage", "--validation_split_percentage",
......
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