build_product.yaml 954 字节
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:
D
dongshuilong 已提交
29 30
  index_method: "HNSW32" # supported: HNSW32, IVF, Flat
  index_dir: "./recognition_demo_data_v1.0/gallery_product/index"
31 32
  image_root: "./recognition_demo_data_v1.0/gallery_product/"
  data_file:  "./recognition_demo_data_v1.0/gallery_product/data_file.txt"
D
dongshuilong 已提交
33
  index_operation: "new" # suported: "append", "remove", "new"
34
  delimiter: "\t"
C
cuicheng01 已提交
35 36
  dist_type: "IP"
  embedding_size: 512