Skip to content
Snippets Groups Projects
Commit 85c082af authored by Alice Brenon's avatar Alice Brenon
Browse files

Add a help message to the --maximal flag of the confusion matrix script

parent aac37961
No related branches found
No related tags found
No related merge requests found
...@@ -57,8 +57,8 @@ def getArgs(arguments): ...@@ -57,8 +57,8 @@ def getArgs(arguments):
cli.add_argument('inputFile') cli.add_argument('inputFile')
cli.add_argument('outputJSON') cli.add_argument('outputJSON')
add_labels_argument(cli) add_labels_argument(cli)
cli.add_argument('-m', '--maximal', cli.add_argument('-m', '--maximal', action='store_const', const=True,
action='store_const', const=True, default=False) default=False, help="Simplify the matrix into an MCM")
return cli.parse_args(arguments) return cli.parse_args(arguments)
def extractConfusionMatrixCLI(arguments): def extractConfusionMatrixCLI(arguments):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment