PP-LCNet.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 44
ENV:
  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:
  - ClassificationOp:
      name: cls
      param_path: paddlecv://models/PPLCNet_x1_0_infer/inference.pdiparams
      model_path: paddlecv://models/PPLCNet_x1_0_infer/inference.pdmodel
      batch_size: 8
      PreProcess:
        - ResizeImage:
            resize_short: 256
        - CropImage:
            size: 224
        - NormalizeImage:
            scale: 0.00392157
            mean: [0.485, 0.456, 0.406]
            std: [0.229, 0.224, 0.225]
            order: ''
            channel_num: 3
        - ToCHWImage:
        - ExpandDim:
            axis: 0
      PostProcess:
        - Topk:
            topk: 5
            class_id_map_file: "paddlecv://dict/classification/imagenet1k_label_list.txt"
      Inputs:
        - input.image

  - ClasOutput:
      name: vis
      Inputs:
        - input.fn
        - input.image
        - cls.class_ids
        - cls.scores
        - cls.label_names