rec_r31_sar.yml 2.2 KB
Newer Older
A
andyjpaddle 已提交
1 2 3 4 5
Global:
  use_gpu: true
  epoch_num: 5
  log_smooth_window: 20
  print_batch_step: 20
A
andyjpaddle 已提交
6
  save_model_dir: ./sar_rec
A
andyjpaddle 已提交
7 8 9 10
  save_epoch_step: 1
  # evaluation is run every 2000 iterations
  eval_batch_step: [0, 2000]
  cal_metric_during_train: True
A
andyjpaddle 已提交
11
  pretrained_model:
A
andyjpaddle 已提交
12 13 14
  checkpoints: 
  save_inference_dir:
  use_visualdl: False
A
andyjpaddle 已提交
15
  infer_img: 
A
andyjpaddle 已提交
16 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 53 54 55 56
  # for data or label process
  character_dict_path: ppocr/utils/dict90.txt
  character_type: ch
  max_text_length: 30
  infer_mode: False
  use_space_char: False
  save_res_path: ./output/rec/predicts_sar.txt

Optimizer:
  name: Adam
  beta1: 0.9
  beta2: 0.999
  lr:
    name: Piecewise
    decay_epochs: [3, 4]
    values: [0.001, 0.0001, 0.00001] 
  regularizer:
    name: 'L2'
    factor: 0

Architecture:
  model_type: rec
  algorithm: SAR
  Transform:
  Backbone:
    name: ResNet31
  Head:
    name: SARHead

Loss:
  name: SARLoss

PostProcess:
  name: SARLabelDecode

Metric:
  name: RecMetric


Train:
  dataset:
A
andyjpaddle 已提交
57 58
    name: SimpleDataSet
    delimiter: ' '
59
    label_file_list: ['/paddle/data/concat_data/train_list.txt']
A
andyjpaddle 已提交
60 61
    data_dir: /paddle/data/concat_data/
    ratio_list: 1.0
A
andyjpaddle 已提交
62 63 64 65 66 67 68 69 70 71 72 73
    transforms:
      - DecodeImage: # load image
          img_mode: BGR
          channel_first: False
      - SARLabelEncode: # Class handling label
      - SARRecResizeImg:
          image_shape: [3, 48, 48, 160] # h:48 w:[48,160]
          width_downsample_ratio: 0.25
      - KeepKeys:
          keep_keys: ['image', 'label', 'valid_ratio'] # dataloader will return list in this order
  loader:
    shuffle: True
74
    batch_size_per_card: 64
A
andyjpaddle 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
    drop_last: True
    num_workers: 8
    use_shared_memory: False

Eval:
  dataset:
    name: LMDBDataSet
    data_dir: /paddle/data/ocr_data/evaluation/
    transforms:
      - DecodeImage: # load image
          img_mode: BGR
          channel_first: False
      - SARLabelEncode: # Class handling label
      - SARRecResizeImg:
          image_shape: [3, 48, 48, 160]
          width_downsample_ratio: 0.25
      - KeepKeys:
          keep_keys: ['image', 'label', 'valid_ratio'] # dataloader will return list in this order
  loader:
    shuffle: False
    drop_last: False
    batch_size_per_card: 64
    num_workers: 4
    use_shared_memory: False
A
andyjpaddle 已提交
99