mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* add yolov3 head to SDK * add yolov5 head to SDK * fix export-info and lint, add reverse check * fix lint * fix export info for yolo heads * add output_names to partition_config * fix typo * config * normalize config * fix * refactor config * fix lint and doc * c++ form * resolve comments * fix CI * fix CI * fix CI * float strides anchors * refine pipeline of rknn-int8 * config * rename func * refactor * rknn wrapper dict and fix typo * rknn wrapper output update, mmcls use end2end type * fix typo
10 lines
269 B
Python
10 lines
269 B
Python
_base_ = ['./segmentation_static.py', '../_base_/backends/rknn.py']
|
|
|
|
onnx_config = dict(input_shape=[320, 320])
|
|
|
|
codebase_config = dict(model_type='rknn')
|
|
|
|
backend_config = dict(
|
|
input_size_list=[[3, 320, 320]],
|
|
quantization_config=dict(do_quantization=False))
|