Open mathmanu opened 4 months ago
This is for information only - the above patch already includes these changes.
The patch adds the following code in mmyolo repository in tools/train.py. similarly tools/test.py is also modified to include model surgery.
from edgeai_torchmodelopt import xmodelopt
Add this in parse_args function:
parser.add_argument('--model-surgery', type=int, default=0)
Add the following code in mmyolo repository in tools/train.py before the line runner.train()
if args.model_surgery:
surgery_fn = xmodelopt.surgery.v1.convert_to_lite_model if args.model_surgery == 1 \
else (xmodelopt.surgery.v2.convert_to_lite_fx if args.model_surgery == 2 else None)
runner._init_model_weights()
if is_model_wrapper(runner.model):
runner.model = runner.model.module
runner.model.backbone = surgery_fn(runner.model.backbone)
runner.model.neck = surgery_fn(runner.model.neck)
# Only head_module of head goes through model_surgery as it contains all compute layers
if not isinstance(runner.model.bbox_head.head_module, (YOLOv5HeadModule, YOLOv7HeadModule, YOLOv8HeadModule, YOLOv6HeadModule)):
if hasattr(runner.model.bbox_head.head_module, 'reg_max'):
reg_max = runner.model.bbox_head.head_module.reg_max
else:
reg_max = None
runner.model.bbox_head.head_module = \
surgery_fn(runner.model.bbox_head.head_module)
if reg_max is not None:
runner.model.bbox_head.head_module.reg_max = reg_max
elif isinstance(runner.model.bbox_head.head_module, (YOLOv8HeadModule, YOLOv6HeadModule)):
runner.model.bbox_head.head_module = xmodelopt.surgery.v1.convert_to_lite_model(runner.model.bbox_head.head_module)
runner.model = runner.wrap_model(runner.cfg.get('model_wrapper_cfg'), runner.model)
print("\n\n model summary : \n",runner.model)
Currently i'm facing a major issue integrating these optimization.
from torch.fx.graph import _parse_stack_trace
ImportError: cannot import name '_parse_stack_trace' from 'torch.fx.graph
when i try to run the model after integrating the optimization i run into this issue. which when i tracked require torch with version 2.2 at least. Nevertheless mmyolo 0.6 which is the latest version require an earlier version same with cuda.
Hope you can guide me the environment you are currently using cause i tried several updates but reached a dead end.
Introduction
mmyolo (https://github.com/open-mmlab/mmyolo) is a repository that has several interesting Object Detection models. For example, it includes models such as YOLOv5, YOLOv7, YOLOX, YOLOv8 etc.
Here we describe how to apply Model Surgery on mmyolo to create lite models that run faster on Embedded Systems.
Background - What actually happens in Model Surgery
The types of Operators/Layers that are being used in popular models are increasing rapidly. All of them may not work efficiently in embedded devices. For example, a ReLU activation layer is much faster compared to a SWish activation layer - because ReLU operator is implemented in Hardware at fullest speed (because of the simplicity of ReLU operation). This is just an example. There are several such examples.
In many cases it is possible to replace in-efficient layers with their efficient alternatives without actually modifying the code. It is done by modifying the Python model after the model has been instantiated.
How to use edgeai-modeloptimization
edgeai-modeloptimization (https://github.com/TexasInstruments/edgeai-tensorlab/tree/main/edgeai-modeloptimization) is a package that can automate some of the Model Surgery aspects.
It provides edgeai_torchmodelopt, a python pakage that helps to modify PyTorch models without manually editing the model code.
The exact location is here: https://github.com/TexasInstruments/edgeai-tensorlab/tree/main/edgeai-modeloptimization/torchmodelopt
It provides various types of model surgery options as described here: https://github.com/TexasInstruments/edgeai-tensorlab/blob/main/edgeai-modeloptimization/torchmodelopt/docs/surgery.md
Patch file
The commit id of mmyolo (https://github.com/open-mmlab/mmyolo) for this explanation is: 8c4d9dc503dc8e327bec8147e8dc97124052f693
This patch file includes above modification in train.py and other modifications in val.py, prototxt export etc. 0001-2024-Aug-2-mmyolo.commit-8c4d9dc5.-model-surgery-with-edgeai-modeloptimization.txt
Patching mmyolo:
Run training:
You can also use tools/dist_train.sh (just make sure that --model-surgery 1 argument is passed inside it)
Expected Accuracy
This table shows expected model accuracy of Lite models after training.
Notes
Additional information
Additional information about the details of the modifications done using Model Surgery is here: https://github.com/TexasInstruments/edgeai-yolov5