q yao

Results 318 comments of q yao

Could you share your environment? You can use [this script](https://github.com/open-mmlab/mmdeploy/blob/master/tools/check_env.py).

You might need to update the input shape range in the config, for example: ```python backend_config = dict( common_config=dict(max_workspace_size=1

I can not reproduce the error. Could you print the `graph.inputs()`?

https://github.com/onnx/onnx/issues/3493 Try import onnx at the first line in https://github.com/open-mmlab/mmdeploy/blob/14b2bfd524d197565621fedbc47b5940bb22ceed/mmdeploy/apis/onnx/export.py#L122

Could you try to locate what caused `check_env.py` crash?

Please post your environment with https://github.com/open-mmlab/mmdeploy/blob/master/tools/check_env.py.

I can not reproduce the error. Please try set the input device and model device in https://github.com/open-mmlab/mmdeploy/blob/master/mmdeploy/apis/onnx/export.py.

A good startup is trying to add support to part of the model. For example, `yolact` can be split into `backbone`, `neck`, `bbox_head`. Try to convert it with: ```python from...

Small mAP loss is inevitable, MMDetection will filter bboxes by scores in RPN, which is hard to implement in TensorRT. I have test the faster-rcnn with DCN and mDCN, both...