Commit a3d381d2 authored by limm's avatar limm
Browse files

add data module

parent b95be0c5
Pipeline #2817 canceled with stages
[
{
"filename": "tiger.jpeg",
"width": 278,
"height": 182
}
]
# Copyright (c) OpenMMLab. All rights reserved.
onnx_config = dict(
dynamic_axes={
'input': {
0: 'batch',
2: 'height',
3: 'width'
},
'output': {
0: 'batch',
2: 'height',
3: 'width'
}
},
type='onnx',
export_params=True,
keep_initializers_as_inputs=False,
opset_version=11,
save_file='end2end.onnx',
input_names=['input'],
output_names=['output'],
input_shape=None)
codebase_config = dict(type='mmagic', task='SuperResolution')
backend_config = dict(type='onnxruntime')
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment