We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4bdc19 commit b6fb4aaCopy full SHA for b6fb4aa
ngcsimlib/__init__.py
@@ -17,7 +17,8 @@ def preload():
17
parser = argparse.ArgumentParser(description='Build and run a model using ngclearn')
18
parser.add_argument("--modules", type=str, help='location of modules.json file')
19
20
- args = parser.parse_args()
+ ## ngc-sim-lib only cares about --modules argument
21
+ args, unknown = parser.parse_known_args() #args = parser.parse_args()
22
try:
23
module_path = args.modules
24
except:
0 commit comments