rec_mv3_none_bilstm_ctc.yml 967 Bytes
Newer Older
LDOUBLEV's avatar
LDOUBLEV committed
1
2
Global:
  algorithm: CRNN
tink2123's avatar
tink2123 committed
3
  use_gpu: false
LDOUBLEV's avatar
LDOUBLEV committed
4
5
6
  epoch_num: 72
  log_smooth_window: 20
  print_batch_step: 10
LDOUBLEV's avatar
LDOUBLEV committed
7
  save_model_dir: output/rec_CRNN
LDOUBLEV's avatar
LDOUBLEV committed
8
9
10
11
12
13
14
15
16
  save_epoch_step: 3
  eval_batch_step: 2000
  train_batch_size_per_card: 256
  test_batch_size_per_card: 256
  image_shape: [3, 32, 100]
  max_text_length: 25
  character_type: en
  loss_type: ctc
  reader_yml: ./configs/rec/rec_benchmark_reader.yml
tink2123's avatar
tink2123 committed
17
  pretrain_weights: ./output/rec_CRNN/rec_mv3_none_bilstm_ctc/best_accuracy
18
19
  checkpoints:
  save_inference_dir:
LDOUBLEV's avatar
LDOUBLEV committed
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  
Architecture:
  function: ppocr.modeling.architectures.rec_model,RecModel

Backbone:
  function: ppocr.modeling.backbones.rec_mobilenet_v3,MobileNetV3
  scale: 0.5
  model_name: large
 
Head:
  function: ppocr.modeling.heads.rec_ctc_head,CTCPredict
  encoder_type: rnn
  SeqRNN:
    hidden_size: 96
    
Loss:
  function: ppocr.modeling.losses.rec_ctc_loss,CTCLoss

Optimizer:
  function: ppocr.optimizer,AdamDecay
  base_lr: 0.001
  beta1: 0.9
  beta2: 0.999