recognition_en.md 18.9 KB
Newer Older
X
xxxpsyduck 已提交
1
## TEXT RECOGNITION
K
Khanh Tran 已提交
2

W
WenmuZhou 已提交
3 4 5 6 7
- [1 DATA PREPARATION](#DATA_PREPARATION)
    - [1.1 Costom Dataset](#Costom_Dataset)
    - [1.2 Dataset Download](#Dataset_download)
    - [1.3 Dictionary](#Dictionary)  
    - [1.4 Add Space Category](#Add_space_category)
W
WenmuZhou 已提交
8

W
WenmuZhou 已提交
9 10 11 12
- [2 TRAINING](#TRAINING)
    - [2.1 Data Augmentation](#Data_Augmentation)
    - [2.2 Training](#Training)
    - [2.3 Multi-language](#Multi_language)
W
WenmuZhou 已提交
13

W
WenmuZhou 已提交
14
- [3 EVALUATION](#EVALUATION)
W
WenmuZhou 已提交
15

W
WenmuZhou 已提交
16 17
- [4 PREDICTION](#PREDICTION)
    - [4.1 Training engine prediction](#Training_engine_prediction)
W
WenmuZhou 已提交
18 19

<a name="DATA_PREPARATION"></a>
X
xxxpsyduck 已提交
20
### DATA PREPARATION
K
Khanh Tran 已提交
21 22


W
WenmuZhou 已提交
23 24 25
PaddleOCR supports two data formats:
- `LMDB` is used to train data sets stored in lmdb format;
- `general data` is used to train data sets stored in text files:
K
Khanh Tran 已提交
26 27 28 29 30 31

Please organize the dataset as follows:

The default storage path for training data is `PaddleOCR/train_data`, if you already have a dataset on your disk, just create a soft link to the dataset directory:

```
W
WenmuZhou 已提交
32
# linux and mac os
33
ln -sf <path/to/dataset> <path/to/paddle_ocr>/train_data/dataset
W
WenmuZhou 已提交
34 35
# windows
mklink /d <path/to/paddle_ocr>/train_data/dataset <path/to/dataset>
K
Khanh Tran 已提交
36 37
```

W
WenmuZhou 已提交
38
<a name="Costom_Dataset"></a>
W
WenmuZhou 已提交
39
#### 1.1 Costom dataset
K
Khanh Tran 已提交
40 41 42 43 44

If you want to use your own data for training, please refer to the following to organize your data.

- Training set

W
WenmuZhou 已提交
45
It is recommended to put the training images in the same folder, and use a txt file (rec_gt_train.txt) to store the image path and label. The contents of the txt file are as follows:
K
Khanh Tran 已提交
46 47 48 49 50 51

* Note: by default, the image path and image label are split with \t, if you use other methods to split, it will cause training error

```
" Image file name           Image annotation "

W
WenmuZhou 已提交
52 53
train_data/rec/train/word_001.jpg   简单可依赖
train_data/rec/train/word_002.jpg   用科技让复杂的世界更简单
W
WenmuZhou 已提交
54
...
K
Khanh Tran 已提交
55 56 57 58 59 60
```

The final training set should have the following file structure:

```
|-train_data
W
WenmuZhou 已提交
61
  |-rec
W
WenmuZhou 已提交
62 63 64 65 66 67
    |- rec_gt_train.txt
    |- train
        |- word_001.png
        |- word_002.jpg
        |- word_003.jpg
        | ...
K
Khanh Tran 已提交
68 69 70 71 72 73 74 75
```

- Test set

Similar to the training set, the test set also needs to be provided a folder containing all images (test) and a rec_gt_test.txt. The structure of the test set is as follows:

```
|-train_data
W
WenmuZhou 已提交
76
  |-rec
K
Khanh Tran 已提交
77 78 79 80 81 82 83 84
    |-ic15_data
        |- rec_gt_test.txt
        |- test
            |- word_001.jpg
            |- word_002.jpg
            |- word_003.jpg
            | ...
```
W
WenmuZhou 已提交
85 86 87 88 89 90 91 92

<a name="Dataset_download"></a>
#### 1.2 Dataset download

If you do not have a dataset locally, you can download it on the official website [icdar2015](http://rrc.cvc.uab.es/?ch=4&com=downloads). Also refer to [DTRB](https://github.com/clovaai/deep-text-recognition-benchmark#download-lmdb-dataset-for-traininig-and-evaluation-from-here) ,download the lmdb format dataset required for benchmark

If you want to reproduce the paper indicators of SRN, you need to download offline [augmented data](https://pan.baidu.com/s/1-HSZ-ZVdqBF2HaBZ5pRAKA), extraction code: y3ry. The augmented data is obtained by rotation and perturbation of mjsynth and synthtext. Please unzip the data to {your_path}/PaddleOCR/train_data/data_lmdb_Release/training/path.

93 94
If you want to reproduce the paper SAR, you need to download extra dataset [SynthAdd](https://pan.baidu.com/share/init?surl=uV0LtoNmcxbO-0YA7Ch4dg), extraction code: 627x. Besides, icdar2013, icdar2015, cocotext, IIIT5k datasets are also used to train. For specific details, please refer to the paper SAR.

W
WenmuZhou 已提交
95 96 97 98 99 100 101 102 103
PaddleOCR provides label files for training the icdar2015 dataset, which can be downloaded in the following ways:

```
# Training set label
wget -P ./train_data/ic15_data  https://paddleocr.bj.bcebos.com/dataset/rec_gt_train.txt
# Test Set Label
wget -P ./train_data/ic15_data  https://paddleocr.bj.bcebos.com/dataset/rec_gt_test.txt
```

W
WenmuZhou 已提交
104
<a name="Dictionary"></a>
W
WenmuZhou 已提交
105
#### 1.3 Dictionary
K
Khanh Tran 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

Finally, a dictionary ({word_dict_name}.txt) needs to be provided so that when the model is trained, all the characters that appear can be mapped to the dictionary index.

Therefore, the dictionary needs to contain all the characters that you want to be recognized correctly. {word_dict_name}.txt needs to be written in the following format and saved in the `utf-8` encoding format:

```
l
d
a
d
r
n
```

In `word_dict.txt`, there is a single word in each line, which maps characters and numeric indexes together, e.g "and" will be mapped to [2 5 1]

W
WenmuZhou 已提交
122 123
PaddleOCR has built-in dictionaries, which can be used on demand.

K
Khanh Tran 已提交
124 125
`ppocr/utils/ppocr_keys_v1.txt` is a Chinese dictionary with 6623 characters.

W
WenmuZhou 已提交
126 127 128 129
`ppocr/utils/ic15_dict.txt` is an English dictionary with 63 characters

`ppocr/utils/dict/french_dict.txt` is a French dictionary with 118 characters

130
`ppocr/utils/dict/japan_dict.txt` is a Japanese dictionary with 4399 characters
W
WenmuZhou 已提交
131

T
tink2123 已提交
132
`ppocr/utils/dict/korean_dict.txt` is a Korean dictionary with 3636 characters
W
WenmuZhou 已提交
133

T
tink2123 已提交
134 135
`ppocr/utils/dict/german_dict.txt` is a German dictionary with 131 characters

T
tink2123 已提交
136
`ppocr/utils/en_dict.txt` is a English dictionary with 96 characters
W
WenmuZhou 已提交
137

X
xiaoting 已提交
138

W
WenmuZhou 已提交
139
The current multi-language model is still in the demo stage and will continue to optimize the model and add languages. **You are very welcome to provide us with dictionaries and fonts in other languages**,
littletomatodonkey's avatar
fix doc  
littletomatodonkey 已提交
140
If you like, you can submit the dictionary file to [dict](../../ppocr/utils/dict) and we will thank you in the Repo.
K
Khanh Tran 已提交
141 142 143 144


To customize the dict file, please modify the `character_dict_path` field in `configs/rec/rec_icdar15_train.yml` and set `character_type` to `ch`.

T
tink2123 已提交
145 146 147 148
- Custom dictionary

If you need to customize dic file, please add character_dict_path field in configs/rec/rec_icdar15_train.yml to point to your dictionary path. And set character_type to ch.

W
WenmuZhou 已提交
149
<a name="Add_space_category"></a>
W
WenmuZhou 已提交
150
#### 1.4 Add space category
T
tink2123 已提交
151

152
If you want to support the recognition of the `space` category, please set the `use_space_char` field in the yml file to `True`.
T
tink2123 已提交
153 154 155

**Note: use_space_char only takes effect when character_type=ch**

W
WenmuZhou 已提交
156
<a name="TRAINING"></a>
W
WenmuZhou 已提交
157
### 2 TRAINING
K
Khanh Tran 已提交
158 159 160 161 162 163 164 165

PaddleOCR provides training scripts, evaluation scripts, and prediction scripts. In this section, the CRNN recognition model will be used as an example:

First download the pretrain model, you can download the trained model to finetune on the icdar2015 data:

```
cd PaddleOCR/
# Download the pre-trained model of MobileNetV3
T
tink2123 已提交
166
wget -P ./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/rec_mv3_none_bilstm_ctc_v2.0_train.tar
K
Khanh Tran 已提交
167 168
# Decompress model parameters
cd pretrain_models
T
tink2123 已提交
169
tar -xf rec_mv3_none_bilstm_ctc_v2.0_train.tar && rm -rf rec_mv3_none_bilstm_ctc_v2.0_train.tar
K
Khanh Tran 已提交
170 171 172 173 174
```

Start training:

```
175
# GPU training Support single card and multi-card training, specify the card number through --gpus
T
tink2123 已提交
176
# Training icdar15 English data and The training log will be automatically saved as train.log under "{save_model_dir}"
177
python3 -m paddle.distributed.launch --gpus '0,1,2,3'  tools/train.py -c configs/rec/rec_icdar15_train.yml
K
Khanh Tran 已提交
178
```
W
WenmuZhou 已提交
179
<a name="Data_Augmentation"></a>
W
WenmuZhou 已提交
180
#### 2.1 Data Augmentation
T
tink2123 已提交
181 182 183 184 185 186 187

PaddleOCR provides a variety of data augmentation methods. If you want to add disturbance during training, please set `distort: true` in the configuration file.

The default perturbation methods are: cvtColor, blur, jitter, Gasuss noise, random crop, perspective, color reverse.

Each disturbance method is selected with a 50% probability during the training process. For specific code implementation, please refer to: [img_tools.py](https://github.com/PaddlePaddle/PaddleOCR/blob/develop/ppocr/data/rec/img_tools.py)

W
WenmuZhou 已提交
188
<a name="Training"></a>
W
WenmuZhou 已提交
189
#### 2.2 Training
T
tink2123 已提交
190

K
Khanh Tran 已提交
191 192 193 194 195 196 197 198 199
PaddleOCR supports alternating training and evaluation. You can modify `eval_batch_step` in `configs/rec/rec_icdar15_train.yml` to set the evaluation frequency. By default, it is evaluated every 500 iter and the best acc model is saved under `output/rec_CRNN/best_accuracy` during the evaluation process.

If the evaluation set is large, the test will be time-consuming. It is recommended to reduce the number of evaluations, or evaluate after training.

* Tip: You can use the `-c` parameter to select multiple model configurations under the `configs/rec/` path for training. The recognition algorithms supported by PaddleOCR are:


| Configuration file |  Algorithm |   backbone |   trans   |   seq      |     pred     |
| :--------: |  :-------:   | :-------:  |   :-------:   |   :-----:   |  :-----:   |
200 201
| [rec_chinese_lite_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml) |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  |
| [rec_chinese_common_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_common_train_v2.0.yml) |  CRNN | ResNet34_vd |  None   |  BiLSTM |  ctc  |
K
Khanh Tran 已提交
202
| rec_chinese_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  |
W
WenmuZhou 已提交
203
| rec_chinese_common_train.yml |  CRNN |   ResNet34_vd |  None   |  BiLSTM |  ctc  |
K
Khanh Tran 已提交
204 205 206 207 208
| rec_icdar15_train.yml |  CRNN |   Mobilenet_v3 large 0.5 |  None   |  BiLSTM |  ctc  |
| rec_mv3_none_bilstm_ctc.yml |  CRNN |   Mobilenet_v3 large 0.5 |  None   |  BiLSTM |  ctc  |
| rec_mv3_none_none_ctc.yml |  Rosetta |   Mobilenet_v3 large 0.5 |  None   |  None |  ctc  |
| rec_r34_vd_none_bilstm_ctc.yml |  CRNN |   Resnet34_vd |  None   |  BiLSTM |  ctc  |
| rec_r34_vd_none_none_ctc.yml |  Rosetta |   Resnet34_vd |  None   |  None |  ctc  |
L
LDOUBLEV 已提交
209 210
| rec_mv3_tps_bilstm_att.yml |  CRNN |   Mobilenet_v3 |  TPS   |  BiLSTM |  att  |
| rec_r34_vd_tps_bilstm_att.yml |  CRNN |   Resnet34_vd |  TPS   |  BiLSTM |  att  |
T
tink2123 已提交
211
| rec_r50fpn_vd_none_srn.yml    | SRN | Resnet50_fpn_vd    | None    | rnn | srn |
A
andyjpaddle 已提交
212
| rec_r31_sar.yml               | SAR | ResNet31 | None | LSTM encoder | LSTM decoder |
K
Khanh Tran 已提交
213 214


W
WenmuZhou 已提交
215
For training Chinese data, it is recommended to use
216
[rec_chinese_lite_train_v2.0.yml](../../configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml). If you want to try the result of other algorithms on the Chinese data set, please refer to the following instructions to modify the configuration file:
K
Khanh Tran 已提交
217
co
218
Take `rec_chinese_lite_train_v2.0.yml` as an example:
K
Khanh Tran 已提交
219 220 221
```
Global:
  ...
222 223
  # Add a custom dictionary, such as modify the dictionary, please point the path to the new dictionary
  character_dict_path: ppocr/utils/ppocr_keys_v1.txt
K
Khanh Tran 已提交
224 225 226
  # Modify character type
  character_type: ch
  ...
227
  # Whether to recognize spaces
228
  use_space_char: True
K
Khanh Tran 已提交
229

230 231 232 233

Optimizer:
  ...
  # Add learning rate decay strategy
234 235 236 237 238 239 240 241 242
  lr:
    name: Cosine
    learning_rate: 0.001
  ...

...

Train:
  dataset:
M
MissPenguin 已提交
243
    # Type of dataset,we support LMDBDataSet and SimpleDataSet
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
    name: SimpleDataSet
    # Path of dataset
    data_dir: ./train_data/
    # Path of train list
    label_file_list: ["./train_data/train_list.txt"]
    transforms:
      ...
      - RecResizeImg:
          # Modify image_shape to fit long text
          image_shape: [3, 32, 320]
      ...
  loader:
    ...
    # Train batch_size for Single card
    batch_size_per_card: 256
    ...

Eval:
  dataset:
M
MissPenguin 已提交
263
    # Type of dataset,we support LMDBDataSet and SimpleDataSet
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
    name: SimpleDataSet
    # Path of dataset
    data_dir: ./train_data
    # Path of eval list
    label_file_list: ["./train_data/val_list.txt"]
    transforms:
      ...
      - RecResizeImg:
          # Modify image_shape to fit long text
          image_shape: [3, 32, 320]
      ...
  loader:
    # Eval batch_size for Single card
    batch_size_per_card: 256
    ...
K
Khanh Tran 已提交
279 280 281
```
**Note that the configuration file for prediction/evaluation must be consistent with the training.**

W
WenmuZhou 已提交
282
<a name="Multi_language"></a>
W
WenmuZhou 已提交
283
#### 2.3 Multi-language
W
WenmuZhou 已提交
284

T
tink2123 已提交
285
PaddleOCR currently supports 80 (except Chinese) language recognition. A multi-language configuration file template is
T
tink2123 已提交
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
provided under the path `configs/rec/multi_languages`: [rec_multi_language_lite_train.yml](../../configs/rec/multi_language/rec_multi_language_lite_train.yml)

There are two ways to create the required configuration file::

1. Automatically generated by script

[generate_multi_language_configs.py](../../configs/rec/multi_language/generate_multi_language_configs.py) Can help you generate configuration files for multi-language models

- Take Italian as an example, if your data is prepared in the following format:
    ```
    |-train_data
        |- it_train.txt # train_set label
        |- it_val.txt # val_set label
        |- data
            |- word_001.jpg
            |- word_002.jpg
            |- word_003.jpg
            | ...
    ```

    You can use the default parameters to generate a configuration file:

    ```bash
    # The code needs to be run in the specified directory
    cd PaddleOCR/configs/rec/multi_language/
    # Set the configuration file of the language to be generated through the -l or --language parameter.
    # This command will write the default parameters into the configuration file
    python3 generate_multi_language_configs.py -l it
    ```

- If your data is placed in another location, or you want to use your own dictionary, you can generate the configuration file by specifying the relevant parameters:

    ```bash
    # -l or --language field is required
    # --train to modify the training set
    # --val to modify the validation set
    # --data_dir to modify the data set directory
T
tink2123 已提交
323
    # --dict to modify the dict path
T
tink2123 已提交
324 325 326 327 328 329 330 331 332 333 334
    # -o to modify the corresponding default parameters
    cd PaddleOCR/configs/rec/multi_language/
    python3 generate_multi_language_configs.py -l it \  # language
    --train {path/of/train_label.txt} \ # path of train_label
    --val {path/of/val_label.txt} \     # path of val_label
    --data_dir {train_data/path} \      # root directory of training data
    --dict {path/of/dict} \             # path of dict
    -o Global.use_gpu=False             # whether to use gpu
    ...

    ```
T
tink2123 已提交
335
Italian is made up of Latin letters, so after executing the command, you will get the rec_latin_lite_train.yml.
T
tink2123 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366

2. Manually modify the configuration file

   You can also manually modify the following fields in the template:

   ```
    Global:
      use_gpu: True
      epoch_num: 500
      ...
      character_type: it  # language
      character_dict_path:  {path/of/dict} # path of dict

   Train:
      dataset:
        name: SimpleDataSet
        data_dir: train_data/ # root directory of training data
        label_file_list: ["./train_data/train_list.txt"] # train label path
      ...

   Eval:
      dataset:
        name: SimpleDataSet
        data_dir: train_data/ # root directory of val data
        label_file_list: ["./train_data/val_list.txt"] # val label path
      ...

   ```

Currently, the multi-language algorithms supported by PaddleOCR are:

T
tink2123 已提交
367
| Configuration file |  Algorithm name |   backbone |   trans   |   seq      |     pred     |  language | character_type |
T
tink2123 已提交
368 369
| :--------: |  :-------:   | :-------:  |   :-------:   |   :-----:   |  :-----:   | :-----:  | :-----:  |
| rec_chinese_cht_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | chinese traditional  | chinese_cht|
T
tink2123 已提交
370
| rec_en_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | English(Case sensitive)   | EN |
T
tink2123 已提交
371 372 373 374
| rec_french_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | French |  french |
| rec_ger_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | German   | german |
| rec_japan_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | Japanese | japan |
| rec_korean_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | Korean  | korean |
T
tink2123 已提交
375 376 377 378
| rec_latin_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | Latin  | latin |
| rec_arabic_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | arabic |  ar |
| rec_cyrillic_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | cyrillic   | cyrillic |
| rec_devanagari_lite_train.yml |  CRNN |   Mobilenet_v3 small 0.5 |  None   |  BiLSTM |  ctc  | devanagari  | devanagari |
T
tink2123 已提交
379

T
tink2123 已提交
380
For more supported languages, please refer to : [Multi-language model](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.1/doc/doc_en/multi_languages_en.md#4-support-languages-and-abbreviations)
W
WenmuZhou 已提交
381

littletomatodonkey's avatar
littletomatodonkey 已提交
382 383 384
The multi-language model training method is the same as the Chinese model. The training data set is 100w synthetic data. A small amount of fonts and test data can be downloaded using the following two methods.
* [Baidu Netdisk](https://pan.baidu.com/s/1bS_u207Rm7YbY33wOECKDA),Extraction code:frgi.
* [Google drive](https://drive.google.com/file/d/18cSWX7wXSy4G0tbKJ0d9PuIaiwRLHpjA/view)
W
WenmuZhou 已提交
385 386 387 388 389 390 391 392

If you want to finetune on the basis of the existing model effect, please refer to the following instructions to modify the configuration file:

Take `rec_french_lite_train` as an example:

```
Global:
  ...
393
  # Add a custom dictionary, such as modify the dictionary, please point the path to the new dictionary
W
WenmuZhou 已提交
394 395
  character_dict_path: ./ppocr/utils/dict/french_dict.txt
  ...
396
  # Whether to recognize spaces
397
  use_space_char: True
398

W
WenmuZhou 已提交
399
...
400 401 402

Train:
  dataset:
M
MissPenguin 已提交
403
    # Type of dataset,we support LMDBDataSet and SimpleDataSet
404 405 406 407 408 409 410 411 412
    name: SimpleDataSet
    # Path of dataset
    data_dir: ./train_data/
    # Path of train list
    label_file_list: ["./train_data/french_train.txt"]
    ...

Eval:
  dataset:
M
MissPenguin 已提交
413
    # Type of dataset,we support LMDBDataSet and SimpleDataSet
414 415 416 417 418 419
    name: SimpleDataSet
    # Path of dataset
    data_dir: ./train_data
    # Path of eval list
    label_file_list: ["./train_data/french_val.txt"]
    ...
W
WenmuZhou 已提交
420
```
K
Khanh Tran 已提交
421

W
WenmuZhou 已提交
422
<a name="EVALUATION"></a>
W
WenmuZhou 已提交
423
### 3 EVALUATION
K
Khanh Tran 已提交
424

W
WenmuZhou 已提交
425
The evaluation dataset can be set by modifying the `Eval.dataset.label_file_list` field in the `configs/rec/rec_icdar15_train.yml` file.
K
Khanh Tran 已提交
426 427 428

```
# GPU evaluation, Global.checkpoints is the weight to be tested
W
WenmuZhou 已提交
429
python3 -m paddle.distributed.launch --gpus '0' tools/eval.py -c configs/rec/rec_icdar15_train.yml -o Global.checkpoints={path/to/weights}/best_accuracy
K
Khanh Tran 已提交
430 431
```

W
WenmuZhou 已提交
432
<a name="PREDICTION"></a>
W
WenmuZhou 已提交
433
### 4 PREDICTION
K
Khanh Tran 已提交
434

W
WenmuZhou 已提交
435
<a name="Training_engine_prediction"></a>
W
WenmuZhou 已提交
436
#### 4.1 Training engine prediction
K
Khanh Tran 已提交
437 438 439 440 441 442 443

Using the model trained by paddleocr, you can quickly get prediction through the following script.

The default prediction picture is stored in `infer_img`, and the weight is specified via `-o Global.checkpoints`:

```
# Predict English results
W
WenmuZhou 已提交
444
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false Global.infer_img=doc/imgs_words/en/word_1.jpg
K
Khanh Tran 已提交
445 446 447 448
```

Input image:

449
![](../imgs_words/en/word_1.png)
K
Khanh Tran 已提交
450 451 452 453 454

Get the prediction result of the input image:

```
infer_img: doc/imgs_words/en/word_1.png
T
tink2123 已提交
455
        result: ('joint', 0.9998967)
K
Khanh Tran 已提交
456 457
```

458
The configuration file used for prediction must be consistent with the training. For example, you completed the training of the Chinese model with `python3 tools/train.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml`, you can use the following command to predict the Chinese model:
K
Khanh Tran 已提交
459 460 461

```
# Predict Chinese results
W
WenmuZhou 已提交
462
python3 tools/infer_rec.py -c configs/rec/ch_ppocr_v2.0/rec_chinese_lite_train_v2.0.yml -o Global.pretrained_model={path/to/weights}/best_accuracy Global.load_static_weights=false Global.infer_img=doc/imgs_words/ch/word_1.jpg
K
Khanh Tran 已提交
463 464 465 466
```

Input image:

467
![](../imgs_words/ch/word_1.jpg)
K
Khanh Tran 已提交
468 469 470 471 472

Get the prediction result of the input image:

```
infer_img: doc/imgs_words/ch/word_1.jpg
T
tink2123 已提交
473
        result: ('韩国小馆', 0.997218)
K
Khanh Tran 已提交
474
```