table_mv3.yml 3.0 KB
Newer Older
M
MissPenguin 已提交
1 2
Global:
  use_gpu: true
3
  epoch_num: 400
M
MissPenguin 已提交
4 5 6
  log_smooth_window: 20
  print_batch_step: 5
  save_model_dir: ./output/table_mv3/
文幕地方's avatar
文幕地方 已提交
7
  save_epoch_step: 400
M
refine  
MissPenguin 已提交
8
  # evaluation is run every 400 iterations after the 0th iteration
M
MissPenguin 已提交
9 10
  eval_batch_step: [0, 400]
  cal_metric_during_train: True
11
  pretrained_model:
文幕地方's avatar
文幕地方 已提交
12
  checkpoints:
M
MissPenguin 已提交
13 14
  save_inference_dir:
  use_visualdl: False
文幕地方's avatar
文幕地方 已提交
15 16
  infer_img: ppstructure/docs/table/table.jpg
  save_res_path: output/table_mv3
M
MissPenguin 已提交
17 18 19
  # for data or label process
  character_dict_path: ppocr/utils/dict/table_structure_dict.txt
  character_type: en
文幕地方's avatar
文幕地方 已提交
20
  max_text_length: 500
M
MissPenguin 已提交
21 22 23 24 25 26 27 28 29 30
  infer_mode: False
  process_total_num: 0
  process_cut_num: 0

Optimizer:
  name: Adam
  beta1: 0.9
  beta2: 0.999
  clip_norm: 5.0
  lr:
M
refine  
MissPenguin 已提交
31
    learning_rate: 0.001
M
MissPenguin 已提交
32 33 34 35 36 37 38 39 40 41
  regularizer:
    name: 'L2'
    factor: 0.00000

Architecture:
  model_type: table
  algorithm: TableAttn
  Backbone:
    name: MobileNetV3
    scale: 1.0
42
    model_name: large
M
MissPenguin 已提交
43
  Head:
M
refine  
MissPenguin 已提交
44 45
    name: TableAttentionHead
    hidden_size: 256
M
MissPenguin 已提交
46
    loc_type: 2
文幕地方's avatar
文幕地方 已提交
47
    max_text_length: 500
M
MissPenguin 已提交
48 49 50 51 52 53 54 55 56 57 58 59

Loss:
  name: TableAttentionLoss
  structure_weight: 100.0
  loc_weight: 10000.0

PostProcess:
  name: TableLabelDecode

Metric:
  name: TableMetric
  main_indicator: acc
文幕地方's avatar
文幕地方 已提交
60
  compute_bbox_metric: False # cost many time, set False for training
M
MissPenguin 已提交
61 62 63 64 65 66 67 68 69 70

Train:
  dataset:
    name: PubTabDataSet
    data_dir: train_data/table/pubtabnet/train/
    label_file_path: train_data/table/pubtabnet/PubTabNet_2.0.0_train.jsonl
    transforms:
      - DecodeImage: # load image
          img_mode: BGR
          channel_first: False
文幕地方's avatar
文幕地方 已提交
71 72 73 74 75
      - TableLabelEncode:
          learn_empty_box: False
          merge_no_span_structure: False
          replace_empty_cell_token: False
      - TableBoxEncode:
M
MissPenguin 已提交
76 77 78 79 80 81 82 83
      - ResizeTableImage:
          max_len: 488
      - NormalizeImage:
          scale: 1./255.
          mean: [0.485, 0.456, 0.406]
          std: [0.229, 0.224, 0.225]
          order: 'hwc'
      - PaddingTableImage:
文幕地方's avatar
文幕地方 已提交
84
          size: [488, 488]
M
MissPenguin 已提交
85 86
      - ToCHWImage:
      - KeepKeys:
文幕地方's avatar
文幕地方 已提交
87
          keep_keys: [ 'image', 'structure', 'bboxes', 'bbox_masks', 'shape' ]
M
MissPenguin 已提交
88 89 90 91
  loader:
    shuffle: True
    batch_size_per_card: 32
    drop_last: True
M
refine  
MissPenguin 已提交
92
    num_workers: 1
M
MissPenguin 已提交
93 94 95 96

Eval:
  dataset:
    name: PubTabDataSet
文幕地方's avatar
文幕地方 已提交
97 98
    data_dir: /home/zhoujun20/table/PubTabNe/pubtabnet/val/
    label_file_list: [/home/zhoujun20/table/PubTabNe/pubtabnet/val_500.jsonl]
M
MissPenguin 已提交
99 100 101 102
    transforms:
      - DecodeImage: # load image
          img_mode: BGR
          channel_first: False
文幕地方's avatar
文幕地方 已提交
103 104 105 106 107
      - TableLabelEncode:
          learn_empty_box: False
          merge_no_span_structure: False
          replace_empty_cell_token: False
      - TableBoxEncode:
M
MissPenguin 已提交
108 109 110 111 112 113 114 115
      - ResizeTableImage:
          max_len: 488
      - NormalizeImage:
          scale: 1./255.
          mean: [0.485, 0.456, 0.406]
          std: [0.229, 0.224, 0.225]
          order: 'hwc'
      - PaddingTableImage:
文幕地方's avatar
文幕地方 已提交
116
          size: [488, 488]
M
MissPenguin 已提交
117 118
      - ToCHWImage:
      - KeepKeys:
文幕地方's avatar
文幕地方 已提交
119
          keep_keys: [ 'image', 'structure', 'bboxes', 'bbox_masks', 'shape' ]
M
MissPenguin 已提交
120 121 122 123
  loader:
    shuffle: False
    drop_last: False
    batch_size_per_card: 16
M
refine  
MissPenguin 已提交
124
    num_workers: 1