Hello: I want to optimize a yolov8s model to tvm model, have the following steps:
- torch.jit.trace
- relay.frontend.from_pytorch
- relay.build(opt_level=3)
- runner = autotvm.LocalRunner(…), tasks = autotvm.task.extract_from_program(…), autotvm.tuner.XGBTuner(…)
- finally relay.build the best model Input size is 1, 3, 540, 960 same in all steps. I use the standard yolov8s model with tvm api in docs. How to solve it? Thanks !