Skip to content

Commit

Permalink
add rtmpose coreml support (#1902)
Browse files Browse the repository at this point in the history
  • Loading branch information
FishBigOcean committed Mar 23, 2023
1 parent 4117aa5 commit 43383e8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions configs/mmpose/pose-detection_simcc_coreml_static-256x192.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
_base_ = ['../_base_/torchscript_config.py', '../_base_/backends/coreml.py']

ir_config = dict(input_shape=[192, 256], output_names=['simcc_x', 'simcc_y'])

codebase_config = dict(type='mmpose', task='PoseDetection')

backend_config = dict(model_inputs=[
dict(
input_shapes=dict(
input=dict(
min_shape=[1, 3, 256, 192],
max_shape=[1, 3, 256, 192],
default_shape=[1, 3, 256, 192])))
])

0 comments on commit 43383e8

Please sign in to comment.