fix typo
This commit is contained in:
parent
4cac91eb7b
commit
aab46214fd
|
@ -13,6 +13,7 @@ Global:
|
|||
max_text_length: 25
|
||||
character_type: en
|
||||
loss_type: attention
|
||||
tps: true
|
||||
reader_yml: ./configs/rec/rec_benchmark_reader.yml
|
||||
pretrain_weights:
|
||||
checkpoints:
|
||||
|
|
|
@ -13,6 +13,7 @@ Global:
|
|||
max_text_length: 25
|
||||
character_type: en
|
||||
loss_type: ctc
|
||||
tps: true
|
||||
reader_yml: ./configs/rec/rec_benchmark_reader.yml
|
||||
pretrain_weights:
|
||||
checkpoints:
|
||||
|
|
|
@ -184,7 +184,7 @@ class SimpleReader(object):
|
|||
self.infer_img = params['infer_img']
|
||||
self.use_tps = False
|
||||
if "tps" in params:
|
||||
self.ues_tps = True
|
||||
self.use_tps = True
|
||||
if params['mode'] == 'train':
|
||||
self.batch_size = params['train_batch_size_per_card']
|
||||
self.drop_last = True
|
||||
|
|
Loading…
Reference in New Issue