diff --git a/ultralytics/yolo/engine/exporter.py b/ultralytics/yolo/engine/exporter.py index 5d23627..2d99b4a 100644 --- a/ultralytics/yolo/engine/exporter.py +++ b/ultralytics/yolo/engine/exporter.py @@ -445,6 +445,8 @@ class Exporter: f.mkdir(exist_ok=True) # make ncnn_model directory LOGGER.info(f"{prefix} running '{' '.join(cmd)}'") subprocess.run(cmd, check=True) + for f in 'debug.bin', 'debug.param', 'debug2.bin', 'debug2.param': # remove debug files + Path(f).unlink(missing_ok=True) yaml_save(f / 'metadata.yaml', self.metadata) # add metadata.yaml return str(f), None