forked from PaddlePaddle/PaddleOCR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request PaddlePaddle#3798 from andyjpaddle/add_rec_sar
Add rec_sar
- Loading branch information
Showing
19 changed files
with
928 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
Global: | ||
use_gpu: true | ||
epoch_num: 5 | ||
log_smooth_window: 20 | ||
print_batch_step: 20 | ||
save_model_dir: ./sar_rec | ||
save_epoch_step: 1 | ||
# evaluation is run every 2000 iterations | ||
eval_batch_step: [0, 2000] | ||
cal_metric_during_train: True | ||
pretrained_model: | ||
checkpoints: | ||
save_inference_dir: | ||
use_visualdl: False | ||
infer_img: | ||
# for data or label process | ||
character_dict_path: ppocr/utils/dict90.txt | ||
character_type: EN_symbol | ||
max_text_length: 30 | ||
infer_mode: False | ||
use_space_char: False | ||
rm_symbol: True | ||
save_res_path: ./output/rec/predicts_sar.txt | ||
|
||
Optimizer: | ||
name: Adam | ||
beta1: 0.9 | ||
beta2: 0.999 | ||
lr: | ||
name: Piecewise | ||
decay_epochs: [3, 4] | ||
values: [0.001, 0.0001, 0.00001] | ||
regularizer: | ||
name: 'L2' | ||
factor: 0 | ||
|
||
Architecture: | ||
model_type: rec | ||
algorithm: SAR | ||
Transform: | ||
Backbone: | ||
name: ResNet31 | ||
Head: | ||
name: SARHead | ||
|
||
Loss: | ||
name: SARLoss | ||
|
||
PostProcess: | ||
name: SARLabelDecode | ||
|
||
Metric: | ||
name: RecMetric | ||
|
||
|
||
Train: | ||
dataset: | ||
name: SimpleDataSet | ||
label_file_list: ['./train_data/train_list.txt'] | ||
data_dir: ./train_data/ | ||
ratio_list: 1.0 | ||
transforms: | ||
- DecodeImage: # load image | ||
img_mode: BGR | ||
channel_first: False | ||
- SARLabelEncode: # Class handling label | ||
- SARRecResizeImg: | ||
image_shape: [3, 48, 48, 160] # h:48 w:[48,160] | ||
width_downsample_ratio: 0.25 | ||
- KeepKeys: | ||
keep_keys: ['image', 'label', 'valid_ratio'] # dataloader will return list in this order | ||
loader: | ||
shuffle: True | ||
batch_size_per_card: 64 | ||
drop_last: True | ||
num_workers: 8 | ||
use_shared_memory: False | ||
|
||
Eval: | ||
dataset: | ||
name: LMDBDataSet | ||
data_dir: ./eval_data/evaluation/ | ||
transforms: | ||
- DecodeImage: # load image | ||
img_mode: BGR | ||
channel_first: False | ||
- SARLabelEncode: # Class handling label | ||
- SARRecResizeImg: | ||
image_shape: [3, 48, 48, 160] | ||
width_downsample_ratio: 0.25 | ||
- KeepKeys: | ||
keep_keys: ['image', 'label', 'valid_ratio'] # dataloader will return list in this order | ||
loader: | ||
shuffle: False | ||
drop_last: False | ||
batch_size_per_card: 64 | ||
num_workers: 4 | ||
use_shared_memory: False | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from __future__ import absolute_import | ||
from __future__ import division | ||
from __future__ import print_function | ||
|
||
import paddle | ||
from paddle import nn | ||
|
||
|
||
class SARLoss(nn.Layer): | ||
def __init__(self, **kwargs): | ||
super(SARLoss, self).__init__() | ||
self.loss_func = paddle.nn.loss.CrossEntropyLoss(reduction="mean", ignore_index=96) | ||
|
||
def forward(self, predicts, batch): | ||
predict = predicts[:, :-1, :] # ignore last index of outputs to be in same seq_len with targets | ||
label = batch[1].astype("int64")[:, 1:] # ignore first index of target in loss calculation | ||
batch_size, num_steps, num_classes = predict.shape[0], predict.shape[ | ||
1], predict.shape[2] | ||
assert len(label.shape) == len(list(predict.shape)) - 1, \ | ||
"The target's shape and inputs's shape is [N, d] and [N, num_steps]" | ||
|
||
inputs = paddle.reshape(predict, [-1, num_classes]) | ||
targets = paddle.reshape(label, [-1]) | ||
loss = self.loss_func(inputs, targets) | ||
return {'loss': loss} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.