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
author Dheeraj Peri <[email protected]> 1711393059 -0700
committer Dheeraj Peri <[email protected]> 1711393072 -0700
chore: minor updates
chore: Fix save failures
chore: minor fixes
chore: remove duplicate bert test case
chore: remove comments
chore: add load api
chore: minor updates
"Not all inputs provided are torch.tensors. Please provide torch.tensors as inputs"
374
+
)
375
+
ifoutput_formatnotinaccepted_formats:
376
+
raiseValueError(
377
+
f"Provided output_format {output_format} is not supported. Supported options are exported_program | torchscript"
378
+
)
379
+
ifnotfile_path:
380
+
raiseValueError("File path cannot be empty. Please provide a valid file path")
381
+
382
+
ifmodule_type==_ModuleType.nn:
383
+
raiseValueError(
384
+
"Input model is of type nn.Module. Saving nn.Module directly is not supported. Supported model types torch.jit.ScriptModule | torch.fx.GraphModule | torch.export.ExportedProgram."
385
+
)
386
+
elifmodule_type==_ModuleType.ts:
387
+
ifoutput_format=="exported_program":
388
+
raiseValueError(
389
+
"Provided model is a torch.jit.ScriptModule but the output_format specified is exported_program. Please verify the output_format"
390
+
)
391
+
else:
392
+
torch.jit.save(module, file_path)
393
+
elifmodule_type==_ModuleType.ep:
394
+
ifoutput_format=="torchscript":
395
+
raiseValueError(
396
+
"Provided model is a torch.export.ExportedProgram but the output_format specified is torchscript. Please verify the output_format"
397
+
)
398
+
else:
399
+
torch.export.save(module, file_path)
400
+
elifmodule_type==_ModuleType.fx:
401
+
ifnotinputs:
402
+
raiseValueError(
403
+
"Provided model is a torch.fx.GraphModule however the inputs are empty. Please provide valid torch.tensors as inputs to trace and save the model"
0 commit comments