mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* mmcls -> mmpretrain * add constraints.txt * fix lint * fix lint * remove constraints.txt * fix windows ci * modify requirements * fix mdlink and mmpretrain version * fix dead link * modify codebase cmakelist * fix rename
13 lines
381 B
Python
13 lines
381 B
Python
_base_ = ['./classification_static.py', '../_base_/backends/tvm.py']
|
|
|
|
onnx_config = dict(input_shape=[224, 224])
|
|
backend_config = dict(model_inputs=[
|
|
dict(
|
|
shape=dict(input=[1, 3, 224, 224]),
|
|
dtype=dict(input='float32'),
|
|
tuner=dict(
|
|
type='AutoScheduleTuner',
|
|
log_file='tvm_tune_log.log',
|
|
num_measure_trials=2000))
|
|
])
|