Skip to content

Commit c052e27

Browse files
authored
[yolov8] standardize to export models as 'model.onnx' (#1867) (#1868)
1 parent 8b5d66e commit c052e27

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/sparseml/yolov8/trainers.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -727,12 +727,8 @@ def export(self, **kwargs):
727727
else manager
728728
)
729729

730-
if args.get("name") and args["name"]:
731-
name = args["name"]
732-
else:
733-
name = f"{type(self.model).__name__}.onnx"
734-
735730
save_dir = args["save_dir"]
731+
name = "model.onnx" # save 'model.onnx' in deployment directory
736732
if not os.path.exists(save_dir):
737733
os.mkdir(save_dir)
738734

0 commit comments

Comments
 (0)