rec_icdar15_train.yml 2.19 KB
Newer Older
tink2123's avatar
tink2123 committed
1
2
3
4
5
6
7
8
9
10
11
12
Global:
  use_gpu: true
  epoch_num: 72
  log_smooth_window: 20
  print_batch_step: 10
  save_model_dir: ./output/rec/ic15/
  save_epoch_step: 3
  # evaluation is run every 2000 iterations
  eval_batch_step: [0, 2000]
  cal_metric_during_train: True
  pretrained_model:
  checkpoints:
tink2123's avatar
tink2123 committed
13
  save_inference_dir: ./
tink2123's avatar
tink2123 committed
14
15
16
  use_visualdl: False
  infer_img: doc/imgs_words_en/word_10.png
  # for data or label process
tink2123's avatar
tink2123 committed
17
  character_dict_path: ppocr/utils/en_dict.txt
tink2123's avatar
tink2123 committed
18
19
20
  max_text_length: 25
  infer_mode: False
  use_space_char: False
littletomatodonkey's avatar
littletomatodonkey committed
21
  save_res_path: ./output/rec/predicts_ic15.txt
tink2123's avatar
tink2123 committed
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

Optimizer:
  name: Adam
  beta1: 0.9
  beta2: 0.999
  lr:
    learning_rate: 0.0005
  regularizer:
    name: 'L2'
    factor: 0

Architecture:
  model_type: rec
  algorithm: CRNN
  Transform:
  Backbone:
tink2123's avatar
tink2123 committed
38
39
40
    name: MobileNetV3
    scale: 0.5
    model_name: large
tink2123's avatar
tink2123 committed
41
42
43
  Neck:
    name: SequenceEncoder
    encoder_type: rnn
tink2123's avatar
tink2123 committed
44
    hidden_size: 96
tink2123's avatar
tink2123 committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  Head:
    name: CTCHead
    fc_decay: 0

Loss:
  name: CTCLoss

PostProcess:
  name: CTCLabelDecode

Metric:
  name: RecMetric
  main_indicator: acc

Train:
  dataset:
    name: SimpleDataSet
tink2123's avatar
tink2123 committed
62
63
    data_dir: ./train_data/ic15_data/
    label_file_list: ["./train_data/ic15_data/rec_gt_train.txt"]
tink2123's avatar
tink2123 committed
64
65
66
67
68
69
70
71
72
73
74
75
76
77
    transforms:
      - DecodeImage: # load image
          img_mode: BGR
          channel_first: False
      - CTCLabelEncode: # Class handling label
      - RecResizeImg:
          image_shape: [3, 32, 100]
      - KeepKeys:
          keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
  loader:
    shuffle: True
    batch_size_per_card: 256
    drop_last: True
    num_workers: 8
78
    use_shared_memory: False
tink2123's avatar
tink2123 committed
79
80
81
82

Eval:
  dataset:
    name: SimpleDataSet
tink2123's avatar
tink2123 committed
83
84
    data_dir: ./train_data/ic15_data
    label_file_list: ["./train_data/ic15_data/rec_gt_test.txt"]
tink2123's avatar
tink2123 committed
85
86
87
88
89
90
91
92
93
94
95
96
97
98
    transforms:
      - DecodeImage: # load image
          img_mode: BGR
          channel_first: False
      - CTCLabelEncode: # Class handling label
      - RecResizeImg:
          image_shape: [3, 32, 100]
      - KeepKeys:
          keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
  loader:
    shuffle: False
    drop_last: False
    batch_size_per_card: 256
    num_workers: 4
99
    use_shared_memory: False