build_cartoon.yaml 999 字节
Newer Older
B
Bin Lu 已提交
1
Global:
2
  rec_inference_model_dir: "./models/cartoon_rec_ResNet50_iCartoon_v1.0_infer/"
B
Bin Lu 已提交
3
  batch_size: 32
B
Bin Lu 已提交
4
  use_gpu: True
5 6
  enable_mkldnn: True
  cpu_num_threads: 10
B
Bin Lu 已提交
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:
        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: ''
    - ToCHWImage:

RecPostProcess: null

29
# indexing engine config
B
Bin Lu 已提交
30
IndexProcess:
D
dongshuilong 已提交
31 32
  index_method: "HNSW32" # supported: HNSW32, IVF, Flat
  index_dir: "./recognition_demo_data_v1.0/gallery_cartoon/index/"
33 34
  image_root: "./recognition_demo_data_v1.0/gallery_cartoon/"
  data_file:  "./recognition_demo_data_v1.0/gallery_cartoon/data_file.txt"
D
dongshuilong 已提交
35
  index_operation: "new" # suported: "append", "remove", "new"
36
  delimiter: "\t"
B
Bin Lu 已提交
37 38
  dist_type: "IP"
  embedding_size: 2048