MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / parse_args

Function parse_args

recompiler.py:40–44  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

38
39# Command line arguments setup
40def parse_args():
41 parser = argparse.ArgumentParser(description='Modify model to use custom MyDense layer.',
42 epilog='Usage: python recomplier.py --model_file YOUR_MODEL_FILE')
43 parser.add_argument('--model', help="File containing the model (e.g., model.py)", default="", type=str)
44 return parser.parse_args()
45
46def main():
47 args = parse_args()

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected