test_cls_config.yaml 946 字节
Newer Older
G
gaotingquan 已提交
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
Global:
  Engine: POPEngine
  infer_imgs: "../../images/wangzai.jpg"


Modules:
  - name:
    type: AlgoMod
    processors:
      - name: ImageProcessor
        type: preprocessor
        ops:
          - 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: hwc
          - ToCHWImage:
          - GetShapeInfo:
              configs:
                order: chw
          - ToBatch:
      - name: PaddlePredictor
        type: predictor
        inference_model_dir: "./MobileNetV2_infer"
G
fix  
gaotingquan 已提交
30 31
        to_model_names:
          image: inputs
G
gaotingquan 已提交
32
        from_model_indexes:
G
fix  
gaotingquan 已提交
33
          logits: 0
G
gaotingquan 已提交
34 35 36
      - name: TopK
        type: postprocessor
        k: 10
G
gaotingquan 已提交
37
        class_id_map_file: "../../../ppcls/utils/imagenet1k_label_list.txt"
G
gaotingquan 已提交
38
        save_dir: None