MCPcopy Create free account
hub / github.com/MARIO-Math-Reasoning/Super_MARIO / parse_args

Function parse_args

solver_demo.py:21–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19
20
21def parse_args():
22 args = argparse.ArgumentParser()
23 args.add_argument('--custom_cfg', type=str, default="configs/sbs_sft.yaml")
24 args.add_argument(
25 "--qaf", "--question-answer-file",
26 type=str,
27 required=True,
28 help="the file includes question / partial solution (optional) / answer (optional)")
29
30 args = args.parse_args()
31 return args
32
33
34if __name__ == '__main__':

Callers 1

solver_demo.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected