Skip to content

Commit

Permalink
Merge pull request #754 from mlcommons/some_doc_updates
Browse files Browse the repository at this point in the history
Minor documentation updates
  • Loading branch information
sarthakpati committed Dec 6, 2023
2 parents 38fa03b + e168f93 commit 9c262ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GANDLF/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
"Contact: gandlf@mlcommons.org\n\n"
+ "This program is NOT FDA/CE approved and NOT intended for clinical use.\nCopyright (c) "
+ str(date.today().year)
+ " MLCommons. All rights reserved.\n\nCitation: https://arxiv.org/abs/2103.01006"
+ " MLCommons. All rights reserved.\n\nCitation: https://doi.org/10.1038/s44172-023-00066-3"
)
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ GaNDLF provides a script to generate metrics after an inference process is done.
# -h, --help Show help message and exit
# -v, --version Show program's version number and exit.
-c , --config The configuration file (contains all the information related to the training/inference session)
-i , --inputdata CSV file that is used to generate the metrics; should contain 3 columns: 'subjectid, prediction, target'
-i , --inputdata CSV file that is used to generate the metrics; should contain 3 columns: 'SubjectID,Target,Prediction'
-o , --outputfile Location to save the output dictionary. If not provided, will print to stdout.
```

Expand Down
2 changes: 1 addition & 1 deletion gandlf_generateMetrics
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if __name__ == "__main__":
metavar="",
type=str,
required=True,
help="CSV file that is used to generate the metrics; should contain 3 columns: 'subjectid, prediction, target'",
help="The CSV file of input data that is used to generate the metrics; should contain 3 columns: 'SubjectID,Target,Prediction'",
)
parser.add_argument(
"-o",
Expand Down

0 comments on commit 9c262ce

Please sign in to comment.