test_keypoint.yml 1.0 KB
Newer Older
W
wangguanzhong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
train_height: &train_height 128
train_width: &train_width 96
trainsize: &trainsize [*train_width, *train_height]

ENV:
  run_mode: paddle
  device: GPU
  min_subgraph_size: 3
  trt_calib_mode: False
  cpu_threads: 1
  trt_use_static: False
  save_img: True
  save_res: True
  return_res: True

MODEL:
  - KeypointOp:
      name: kpt
      param_path: paddlecv://models/tinypose_128x96/inference.pdiparams
      model_path: paddlecv://models/tinypose_128x96/inference.pdmodel
      batch_size: 2
      image_shape: [3, *train_height, *train_width]
      PreProcess:
        - TopDownEvalAffine:
            trainsize: *trainsize
        - NormalizeImage:
            is_scale: true
            mean: [0.485, 0.456, 0.406]
            std: [0.229, 0.224, 0.225]
        - Permute:
      PostProcess:
        - HRNetPostProcess:
            use_dark: True
      Inputs:
        - input.image

  - KptOutput:
      name: vis
      Inputs:
        - input.fn
        - input.image
        - kpt.keypoints
        - kpt.kpt_scores