rec_r34_vd_none_none_ctc.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. Global:
  2. use_gpu: true
  3. epoch_num: 72
  4. log_smooth_window: 20
  5. print_batch_step: 10
  6. save_model_dir: ./output/rec/r34_vd_none_none_ctc/
  7. save_epoch_step: 3
  8. # evaluation is run every 2000 iterations
  9. eval_batch_step: [0, 2000]
  10. cal_metric_during_train: True
  11. pretrained_model:
  12. checkpoints:
  13. save_inference_dir:
  14. use_visualdl: False
  15. infer_img: doc/imgs_words_en/word_10.png
  16. # for data or label process
  17. character_dict_path:
  18. max_text_length: 25
  19. infer_mode: False
  20. use_space_char: False
  21. save_res_path: ./output/rec/predicts_r34_vd_none_none_ctc.txt
  22. Optimizer:
  23. name: Adam
  24. beta1: 0.9
  25. beta2: 0.999
  26. lr:
  27. learning_rate: 0.0005
  28. regularizer:
  29. name: 'L2'
  30. factor: 0
  31. Architecture:
  32. model_type: rec
  33. algorithm: Rosetta
  34. Backbone:
  35. name: ResNet
  36. layers: 34
  37. Neck:
  38. name: SequenceEncoder
  39. encoder_type: reshape
  40. Head:
  41. name: CTCHead
  42. fc_decay: 0.0004
  43. Loss:
  44. name: CTCLoss
  45. PostProcess:
  46. name: CTCLabelDecode
  47. Metric:
  48. name: RecMetric
  49. main_indicator: acc
  50. Train:
  51. dataset:
  52. name: LMDBDataSet
  53. data_dir: ./train_data/data_lmdb_release/training/
  54. transforms:
  55. - DecodeImage: # load image
  56. img_mode: BGR
  57. channel_first: False
  58. - CTCLabelEncode: # Class handling label
  59. - RecResizeImg:
  60. image_shape: [3, 32, 100]
  61. - KeepKeys:
  62. keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
  63. loader:
  64. shuffle: True
  65. batch_size_per_card: 256
  66. drop_last: True
  67. num_workers: 8
  68. Eval:
  69. dataset:
  70. name: LMDBDataSet
  71. data_dir: ./train_data/data_lmdb_release/validation/
  72. transforms:
  73. - DecodeImage: # load image
  74. img_mode: BGR
  75. channel_first: False
  76. - CTCLabelEncode: # Class handling label
  77. - RecResizeImg:
  78. image_shape: [3, 32, 100]
  79. - KeepKeys:
  80. keep_keys: ['image', 'label', 'length'] # dataloader will return list in this order
  81. loader:
  82. shuffle: False
  83. drop_last: False
  84. batch_size_per_card: 256
  85. num_workers: 4