It would be easier to know what mace_run_train is going to do if the --help flag reported the defaults for each option. Should be easy with something like
parser = argparse.ArgumentParser(
# ... other options ...
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
It would be easier to know what
mace_run_train
is going to do if the--help
flag reported the defaults for each option. Should be easy with something like