YOLO-World3 / third_party /mmyolo /configs /deploy /detection_tensorrt-fp16_dynamic-64x64-1344x1344.py
stevengrove
initial commit
186701e
raw
history blame
No virus
493 Bytes
_base_ = ['./base_dynamic.py']
backend_config = dict(
type='tensorrt',
common_config=dict(fp16_mode=True, max_workspace_size=1 << 32),
model_inputs=[
dict(
input_shapes=dict(
input=dict(
min_shape=[1, 3, 64, 64],
opt_shape=[1, 3, 640, 640],
max_shape=[1, 3, 1344, 1344])))
])
use_efficientnms = False # whether to replace TRTBatchedNMS plugin with EfficientNMS plugin # noqa E501