build_product.yaml 873 字节
Newer Older
C
cuicheng01 已提交
1
Global:
C
cuicheng01 已提交
2
  rec_inference_model_dir: "./models/product_ResNet50_vd_aliproduct_v1.0_infer"
B
Bin Lu 已提交
3
  batch_size: 32
C
cuicheng01 已提交
4
  use_gpu: True
5 6
  enable_mkldnn: True
  cpu_num_threads: 10
C
cuicheng01 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
  enable_benchmark: True
  use_fp16: False
  ir_optim: True
  use_tensorrt: False
  gpu_mem: 8000
  enable_profile: False

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:
29 30 31
  index_path: "./recognition_demo_data_v1.0/gallery_product/index"
  image_root: "./recognition_demo_data_v1.0/gallery_product/"
  data_file:  "./recognition_demo_data_v1.0/gallery_product/data_file.txt"
32
  append_index: False
33
  delimiter: "\t"
C
cuicheng01 已提交
34 35 36
  dist_type: "IP"
  pq_size: 100
  embedding_size: 512