You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="output format - use f32 for float32, f16 for float16",
2247
2248
)
2248
-
parser.add_argument("--bigendian", action="store_true", help="model is executed on big endian machine")
2249
+
parser.add_argument(
2250
+
"--bigendian", action="store_true",
2251
+
help="model is executed on big endian machine",
2252
+
)
2249
2253
parser.add_argument(
2250
2254
"model", type=Path,
2251
2255
help="directory containing model file",
2252
2256
)
2253
-
parser.add_argument("--use-temp-file", action="store_true", help="use the tempfile library while processing (helpful when running out of memory, process killed)")
2254
-
parser.add_argument("--model-name", type=str, default=None, help="name of the model")
0 commit comments