From f7de55d931a59446f5961f3dd3c232f4b891987e Mon Sep 17 00:00:00 2001 From: WenmuZhou Date: Wed, 16 Dec 2020 15:16:46 +0800 Subject: [PATCH] fix typo error --- doc/doc_ch/installation.md | 2 +- doc/doc_ch/tree.md | 12 ++++++------ doc/doc_en/installation_en.md | 2 +- doc/doc_en/tree_en.md | 10 +++++----- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/doc_ch/installation.md b/doc/doc_ch/installation.md index 0dddfec0..36565cd4 100644 --- a/doc/doc_ch/installation.md +++ b/doc/doc_ch/installation.md @@ -58,7 +58,7 @@ git clone https://gitee.com/paddlepaddle/PaddleOCR **4. 安装第三方库** ``` cd PaddleOCR -pip3 install -r requirments.txt +pip3 install -r requirements.txt ``` 注意,windows环境下,建议从[这里](https://www.lfd.uci.edu/~gohlke/pythonlibs/#shapely)下载shapely安装包完成安装, diff --git a/doc/doc_ch/tree.md b/doc/doc_ch/tree.md index 51186086..5f048db0 100644 --- a/doc/doc_ch/tree.md +++ b/doc/doc_ch/tree.md @@ -115,7 +115,7 @@ PaddleOCR │ │ │ ├── text_image_aug // 文本识别的 tia 数据扩充 │ │ │ │ ├── __init__.py │ │ │ │ ├── augment.py // tia_distort,tia_stretch 和 tia_perspective 的代码 -│ │ │ │ ├── warp_mls.py +│ │ │ │ ├── warp_mls.py │ │ │ ├── __init__.py │ │ │ ├── east_process.py // EAST 算法的数据处理步骤 │ │ │ ├── make_border_map.py // 生成边界图 @@ -167,7 +167,7 @@ PaddleOCR │ │ │ ├── det_east_head.py // EAST 检测头 │ │ │ ├── det_sast_head.py // SAST 检测头 │ │ │ ├── rec_ctc_head.py // 识别 ctc -│ │ │ ├── rec_att_head.py // 识别 attention +│ │ │ ├── rec_att_head.py // 识别 attention │ │ ├── transforms // 图像变换 │ │ │ ├── __init__.py // 构造 transform 相关代码 │ │ │ └── tps.py // TPS 变换 @@ -185,7 +185,7 @@ PaddleOCR │ │ └── sast_postprocess.py // SAST 后处理 │ └── utils // 工具 │ ├── dict // 小语种字典 -│ .... +│ .... │ ├── ic15_dict.txt // 英文数字字典,区分大小写 │ ├── ppocr_keys_v1.txt // 中文字典,用于训练中文模型 │ ├── logging.py // logger @@ -207,10 +207,10 @@ PaddleOCR │ ├── program.py // 整体流程 │ ├── test_hubserving.py │ └── train.py // 启动训练 -├── paddleocr.py +├── paddleocr.py ├── README_ch.md // 中文说明文档 ├── README_en.md // 英文说明文档 ├── README.md // 主页说明文档 -├── requirments.txt // 安装依赖 +├── requirements.txt // 安装依赖 ├── setup.py // whl包打包脚本 -├── train.sh // 启动训练脚本 \ No newline at end of file +├── train.sh // 启动训练脚本 diff --git a/doc/doc_en/installation_en.md b/doc/doc_en/installation_en.md index 073b67b0..7f1f0e83 100644 --- a/doc/doc_en/installation_en.md +++ b/doc/doc_en/installation_en.md @@ -61,7 +61,7 @@ git clone https://gitee.com/paddlepaddle/PaddleOCR **4. Install third-party libraries** ``` cd PaddleOCR -pip3 install -r requirments.txt +pip3 install -r requirements.txt ``` If you getting this error `OSError: [WinError 126] The specified module could not be found` when you install shapely on windows. diff --git a/doc/doc_en/tree_en.md b/doc/doc_en/tree_en.md index be2f5733..cf9ccb38 100644 --- a/doc/doc_en/tree_en.md +++ b/doc/doc_en/tree_en.md @@ -116,7 +116,7 @@ PaddleOCR │ │ │ ├── text_image_aug // Tia data augment for text recognition │ │ │ │ ├── __init__.py │ │ │ │ ├── augment.py // Tia_distort,tia_stretch and tia_perspective -│ │ │ │ ├── warp_mls.py +│ │ │ │ ├── warp_mls.py │ │ │ ├── __init__.py │ │ │ ├── east_process.py // Data processing steps of EAST algorithm │ │ │ ├── iaa_augment.py // Data augmentation operations @@ -188,7 +188,7 @@ PaddleOCR │ │ └── sast_postprocess.py // SAST post-processing │ └── utils // utils │ ├── dict // Minor language dictionary -│ .... +│ .... │ ├── ic15_dict.txt // English number dictionary, case sensitive │ ├── ppocr_keys_v1.txt // Chinese dictionary for training Chinese models │ ├── logging.py // logger @@ -210,10 +210,10 @@ PaddleOCR │ ├── program.py // Inference system │ ├── test_hubserving.py │ └── train.py // Start training script -├── paddleocr.py +├── paddleocr.py ├── README_ch.md // Chinese documentation ├── README_en.md // English documentation ├── README.md // Home page documentation -├── requirments.txt // Requirments +├── requirements.txt // Requirements ├── setup.py // Whl package packaging script -├── train.sh // Start training bash script \ No newline at end of file +├── train.sh // Start training bash script -- GitLab