rec_icdar15_train.yml 1.1 KB
Newer Older
T
tink2123 已提交
1 2
Global:
  algorithm: CRNN
T
tink2123 已提交
3
  use_gpu: true
T
tink2123 已提交
4
  epoch_num: 1000
T
tink2123 已提交
5 6
  log_smooth_window: 20
  print_batch_step: 10
T
tink2123 已提交
7
  save_model_dir: ./output/rec_CRNN
T
tink2123 已提交
8 9
  save_epoch_step: 300
  eval_batch_step: 500
T
tink2123 已提交
10 11
  train_batch_size_per_card: 256
  test_batch_size_per_card: 256
T
tink2123 已提交
12 13
  image_shape: [3, 32, 100]
  max_text_length: 25
T
tink2123 已提交
14
  character_type: en
T
tink2123 已提交
15
  loss_type: ctc
T
tink2123 已提交
16
  distort: true
农夫三拳_'s avatar
农夫三拳_ 已提交
17
  debug: false
S
shaohua.zhang 已提交
18 19
  reader_yml: ./configs/rec/rec_icdar15_reader.yml
  pretrain_weights: ./pretrain_models/rec_mv3_none_bilstm_ctc/best_accuracy
T
tink2123 已提交
20 21
  checkpoints:
  save_inference_dir:
T
tink2123 已提交
22 23
  infer_img:

T
tink2123 已提交
24 25 26 27 28 29
Architecture:
  function: ppocr.modeling.architectures.rec_model,RecModel

Backbone:
  function: ppocr.modeling.backbones.rec_mobilenet_v3,MobileNetV3
  scale: 0.5
T
tink2123 已提交
30
  model_name: large
T
tink2123 已提交
31 32 33 34 35

Head:
  function: ppocr.modeling.heads.rec_ctc_head,CTCPredict
  encoder_type: rnn
  SeqRNN:
T
tink2123 已提交
36
    hidden_size: 96
T
tink2123 已提交
37 38 39 40 41 42
    
Loss:
  function: ppocr.modeling.losses.rec_ctc_loss,CTCLoss

Optimizer:
  function: ppocr.optimizer,AdamDecay
T
tink2123 已提交
43
  base_lr: 0.0005
T
tink2123 已提交
44 45
  beta1: 0.9
  beta2: 0.999
T
tink2123 已提交
46 47 48 49
  decay:
    function: cosine_decay
    step_each_epoch: 20
    total_epoch: 1000