Skip to content

Commit

Permalink
Revise argument help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
memgonzales committed Apr 29, 2024
1 parent 715fc87 commit 3c8e81f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phiembed.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def write_results(id, scores, output_dir):
parser.add_argument(
"--output",
required=True,
help="Path to the file to which the results of running PHIEmbed will be written",
help="Path to the directory to which the results of running PHIEmbed will be written",
)

args = parser.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion train.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

parser.add_argument(
"--threads",
help="Number of threads used for training (set to -1 to use all threads)",
help="Number of threads to be used for training (default: -1, that is, use all threads)",
type=int,
default=-1,
)
Expand Down

0 comments on commit 3c8e81f

Please sign in to comment.