Skip to content

Commit 5e36dc9

Browse files
authored
docs: fix typos and translation (#14727)
1 parent 9bd0177 commit 5e36dc9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README_en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Full documentation can be found on [docs](https://paddlepaddle.github.io/PaddleO
6565

6666
## 🌟 Features
6767

68-
PaddleOCR support a variety of cutting-edge algorithms related to OCR, and developed industrial featured models/solution [PP-OCR](https://paddlepaddle.github.io/PaddleOCR/latest/en/ppocr/overview.html) [PP-Structure](https://paddlepaddle.github.io/PaddleOCR/latest/en/ppstructure/overview.html) and [PP-ChatOCR](https://aistudio.baidu.com/aistudio/projectdetail/6488689) on this basis, and get through the whole process of data production, model training, compression, inference and deployment.
68+
PaddleOCR support a variety of cutting-edge algorithms related to OCR, and developed industrial featured models/solution [PP-OCR](https://paddlepaddle.github.io/PaddleOCR/latest/en/ppocr/overview.html), [PP-Structure](https://paddlepaddle.github.io/PaddleOCR/latest/en/ppstructure/overview.html) and [PP-ChatOCR](https://aistudio.baidu.com/aistudio/projectdetail/6488689) on this basis, and get through the whole process of data production, model training, compression, inference and deployment.
6969

7070
<div align="center">
7171
<img src="./docs/images/ppocrv4_en.jpg">

docs/community/code_and_doc.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The Python code of PaddleOCR follows [PEP8 Specification]( https://www.python.or
102102
> paddleocr --image_dir ./imgs/11.jpg --use_angle_cls true
103103
> ```
104104

105-
- Variable Rrferences: If code variables or command parameters are referenced in line, they need to be represented in line code, for example, above `--use_angle_cls true` with one space in front and one space in back
105+
- Variable References: If code variables or command parameters are referenced in line, they need to be represented in line code, for example, above `--use_angle_cls true` with one space in front and one space in back
106106

107107
- Uniform naming: e.g. PP-OCRv2, PP-OCR mobile, `paddleocr` whl package, PPOCRLabel, Paddle Lite, etc.
108108

docs/infer_deploy/paddle_js.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ hide:
1313

1414
Run OCR demo in browser refer to [tutorial](https://github.com/PaddlePaddle/FastDeploy/blob/cd0ee79c91d4ed1103abdc65ff12ccadd23d0827/examples/application/js/WebDemo.md).
1515

16-
|demo|web demo dicrctory|visualization|
16+
|demo|web demo directory|visualization|
1717
|-|-|-|
1818
|PP-OCRv3|[TextDetection、TextRecognition](https://github.com/PaddlePaddle/FastDeploy/tree/develop/examples/application/js/web_demo/src/pages/cv/ocr/)|![](./images/196874354-1b5eecb0-f273-403c-aa6c-4463bf6d78db.png)|
1919

docs/ppocr/blog/config.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ In PaddleOCR, the network is divided into four stages: Transform, Backbone, Neck
142142
## 3. Multilingual Config File Generation
143143

144144
PaddleOCR currently supports recognition for 80 languages (besides Chinese). A multi-language configuration file template is
145-
provided under the path `configs/rec/multi_languages`: [rec_multi_language_lite_train.yml](https://github.com/PaddlePaddle/PaddleOCR/tree/main/configs/rec/multi_language/rec_multi_language_lite_train.yml)
145+
provided under the path `configs/rec/multi_languages`: [rec_multi_language_lite_train.yml](https://github.com/PaddlePaddle/PaddleOCR/tree/main/configs/rec/multi_language/rec_multi_language_lite_train.yml).
146146

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

@@ -237,7 +237,7 @@ Currently, the multi-language algorithms supported by PaddleOCR are:
237237
| rec_cyrillic_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | cyrillic |
238238
| rec_devanagari_lite_train.yml | CRNN | Mobilenet_v3 small 0.5 | None | BiLSTM | ctc | devanagari |
239239

240-
For more supported languages, please refer to : [Multi-language model](./multi_languages.en.md)
240+
For more supported languages, please refer to: [Multi-language model](./multi_languages.en.md)
241241

242242
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.
243243

docs/ppocr/blog/whl.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ comments: true
77

88
## 1 Get started quickly
99

10-
### 1.1 install package
10+
### 1.1 Install package
1111

1212
install by pypi
1313

docs/ppstructure/blog/how_to_do_kie.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ comments: true
1111

1212
Key information extraction (KIE) refers to extracting key information from text or images. As the downstream task of OCR, KIE of document image has many practical application scenarios, such as form recognition, ticket information extraction, ID card information extraction, etc. However, it is time-consuming and laborious to extract key information from these document images by manpower. It's challengable but also valuable to combine multi-modal features (visual, layout, text, etc) together and complete KIE tasks.
1313

14-
For the document images in a specific scene, the position and layout of the key information are relatively fixed. Therefore, in the early stage of the research, there are many methods based on template matching to extract the key information. This method is still widely used in many simple scenarios at present. However, it takes long time to adjut the template for different scenarios.
14+
For the document images in a specific scene, the position and layout of the key information are relatively fixed. Therefore, in the early stage of the research, there are many methods based on template matching to extract the key information. This method is still widely used in many simple scenarios at present. However, it takes long time to adjust the template for different scenarios.
1515

1616
The KIE in the document image generally contains 2 subtasks, which is as shown follows.
1717

0 commit comments

Comments
 (0)