summaryrefslogtreecommitdiff
path: root/lib/cli.py
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-01-25 10:18:55 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-01-25 10:18:55 +0100
commitc2e1e6f4034e7800f8b151fa2e971478d4376347 (patch)
tree773c9c86cf7a85298c90ccd614aa60b7536f9ca3 /lib/cli.py
parenteb34056dbf9e10be7bed3835600f4edd7f7a1ef3 (diff)
add an optional XV progress bar
Diffstat (limited to 'lib/cli.py')
-rw-r--r--lib/cli.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/cli.py b/lib/cli.py
index 51f77d3..abeb3d3 100644
--- a/lib/cli.py
+++ b/lib/cli.py
@@ -621,6 +621,11 @@ def add_standard_arguments(parser):
action="store_true",
help="Build regression tree without checking whether static/analytic functions are sufficient.",
)
+ parser.add_argument(
+ "--progress",
+ action="store_true",
+ help="Show progress bars while executing compute-intensive tasks such as cross-validation.",
+ )
def parse_shift_function(param_name, param_shift):