"tools/cfgs/kitti_models/pointrcnn_roiawarepool.yaml" did not exist on "8ec2a2d4fbd7bcfe6cc07ef9f608d235d762618b"
segmentation_tensorrt_static-1024x2048.py 444 Bytes
Newer Older
limm's avatar
limm committed
1
2
3
4
5
6
7
8
9
10
11
12
13
_base_ = ['./segmentation_static.py', '../_base_/backends/tensorrt.py']

onnx_config = dict(input_shape=[2048, 1024])
backend_config = dict(
    common_config=dict(max_workspace_size=1 << 30),
    model_inputs=[
        dict(
            input_shapes=dict(
                input=dict(
                    min_shape=[1, 3, 1024, 2048],
                    opt_shape=[1, 3, 1024, 2048],
                    max_shape=[1, 3, 1024, 2048])))
    ])