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 c3a98de commit 47b24adCopy full SHA for 47b24ad
graph_net/torch/validate.py
@@ -66,5 +66,12 @@ def main(args):
66
action="store_true",
67
help="whether check model graph redundancy",
68
)
69
+ parser.add_argument(
70
+ "--workspace",
71
+ default=os.environ.get("GRAPH_NET_EXTRACT_WORKSPACE", "./workspace"),
72
+ help="whether check model graph redundancy",
73
+ )
74
args = parser.parse_args()
75
+ os.environ["GRAPH_NET_EXTRACT_WORKSPACE"] = args.workspace
76
+
77
main(args=args)
0 commit comments