summaryrefslogtreecommitdiff
path: root/lib/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cli.py')
-rw-r--r--lib/cli.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/cli.py b/lib/cli.py
index 3af8cc1..f988421 100644
--- a/lib/cli.py
+++ b/lib/cli.py
@@ -184,6 +184,12 @@ def add_standard_arguments(parser):
help="Export raw cross-validation results to FILE for later analysis (e.g. to compare different modeling approaches by means of a t-test)",
)
parser.add_argument(
+ "--export-raw-predictions",
+ metavar="FILE",
+ type=str,
+ help="Export raw model error data (i.e., ground truth vs. model output) to FILE for later analysis (e.g. to compare different modeling approaches by means of a t-test)",
+ )
+ parser.add_argument(
"--info",
action="store_true",
help="Show benchmark information (number of measurements, parameter values, ...)",