diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-25 10:18:55 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-25 10:18:55 +0100 |
commit | c2e1e6f4034e7800f8b151fa2e971478d4376347 (patch) | |
tree | 773c9c86cf7a85298c90ccd614aa60b7536f9ca3 /lib/cli.py | |
parent | eb34056dbf9e10be7bed3835600f4edd7f7a1ef3 (diff) |
add an optional XV progress bar
Diffstat (limited to 'lib/cli.py')
-rw-r--r-- | lib/cli.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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): |