inference_product.yaml 1.3 KB
Newer Older
C
cuicheng01 已提交
1
Global:
2
  infer_imgs: "./recognition_demo_data_v1.0/test_product/daoxiangcunjinzhubing_6.jpg"
C
cuicheng01 已提交
3
  det_inference_model_dir: "./models/ppyolov2_r50vd_dcn_mainbody_v1.0_infer"
C
cuicheng01 已提交
4
  rec_inference_model_dir: "./models/product_ResNet50_vd_aliproduct_v1.0_infer"
5 6
  rec_nms_thresold: 0.3
  
C
cuicheng01 已提交
7 8
  batch_size: 1
  image_shape: [3, 640, 640]
C
cuicheng01 已提交
9
  threshold: 0.2
littletomatodonkey's avatar
littletomatodonkey 已提交
10
  max_det_results: 5
C
cuicheng01 已提交
11 12 13 14 15
  labe_list:
  - foreground

  # inference engine config
  use_gpu: True
W
weishengyu 已提交
16
  enable_mkldnn: False
C
cuicheng01 已提交
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 45 46 47 48 49 50 51 52
  cpu_num_threads: 100
  enable_benchmark: True
  use_fp16: False
  ir_optim: True
  use_tensorrt: False
  gpu_mem: 8000
  enable_profile: False

DetPreProcess:
  transform_ops:
    - DetResize:
        interp: 2
        keep_ratio: false
        target_size: [640, 640]
    - DetNormalizeImage:
        is_scale: true
        mean: [0.485, 0.456, 0.406]
        std: [0.229, 0.224, 0.225]
    - DetPermute: {}
DetPostProcess: {}

RecPreProcess:
  transform_ops:
    - ResizeImage:
        size: 224
    - NormalizeImage:
        scale: 0.00392157
        mean: [0.485, 0.456, 0.406]
        std: [0.229, 0.224, 0.225]
        order: ''
    - ToCHWImage:

RecPostProcess: null

# indexing engine config
IndexProcess:
53
  index_path: "./recognition_demo_data_v1.0/gallery_product/index"
C
cuicheng01 已提交
54
  search_budget: 100
55
  return_k: 5
C
cuicheng01 已提交
56
  dist_type: "IP"
littletomatodonkey's avatar
littletomatodonkey 已提交
57
  score_thres: 0.5