mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* fix anchor head and base dense head * fix base dense head bug * fix base dense head bug * fix pad * add ssd model int8 and fp16 config * fix a bug about basedensehead * add config for yolov3 trt fp16 int8 Co-authored-by: maningsheng <mnsheng@yeah.net>
15 lines
408 B
Python
15 lines
408 B
Python
_base_ = [
|
|
'../_base_/base_dynamic.py', '../../_base_/backends/tensorrt-fp16.py'
|
|
]
|
|
|
|
backend_config = dict(
|
|
common_config=dict(max_workspace_size=1 << 30),
|
|
model_inputs=[
|
|
dict(
|
|
input_shapes=dict(
|
|
input=dict(
|
|
min_shape=[1, 3, 160, 160],
|
|
opt_shape=[1, 3, 608, 608],
|
|
max_shape=[1, 3, 608, 608])))
|
|
])
|