PaddleOCR/configs/rec/rec_mv3_tps_bilstm_attn.yml

55 lines
1.1 KiB
YAML
Raw Normal View History

2020-05-10 16:26:57 +08:00
Global:
algorithm: RARE
2020-06-05 11:01:22 +08:00
use_gpu: true
2020-05-10 16:26:57 +08:00
epoch_num: 72
log_smooth_window: 20
print_batch_step: 10
2020-05-13 16:51:36 +08:00
save_model_dir: output/rec_RARE
2020-05-10 16:26:57 +08:00
save_epoch_step: 3
eval_batch_step: 2000
2020-06-05 11:01:22 +08:00
train_batch_size_per_card: 256
test_batch_size_per_card: 256
2020-05-10 16:26:57 +08:00
image_shape: [3, 32, 100]
max_text_length: 25
2020-06-03 17:38:44 +08:00
character_type: en
2020-05-10 16:26:57 +08:00
loss_type: attention
2020-06-03 15:49:18 +08:00
tps: true
2020-05-10 16:26:57 +08:00
reader_yml: ./configs/rec/rec_benchmark_reader.yml
pretrain_weights:
checkpoints:
save_inference_dir:
2020-06-02 19:03:27 +08:00
infer_img:
2020-05-10 16:26:57 +08:00
Architecture:
function: ppocr.modeling.architectures.rec_model,RecModel
TPS:
function: ppocr.modeling.stns.tps,TPS
num_fiducial: 20
loc_lr: 0.1
model_name: small
Backbone:
function: ppocr.modeling.backbones.rec_mobilenet_v3,MobileNetV3
scale: 0.5
model_name: large
Head:
function: ppocr.modeling.heads.rec_attention_head,AttentionPredict
encoder_type: rnn
SeqRNN:
hidden_size: 96
Attention:
decoder_size: 96
word_vector_dim: 96
Loss:
function: ppocr.modeling.losses.rec_attention_loss,AttentionLoss
Optimizer:
function: ppocr.optimizer,AdamDecay
base_lr: 0.001
beta1: 0.9
beta2: 0.999