From c992cc1d4a4e2bf9f6070d645f99fe2138893b88 Mon Sep 17 00:00:00 2001 From: weishengyu Date: Sun, 20 Jun 2021 17:38:12 +0800 Subject: [PATCH] remove chinese comment --- docs/en/inference.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en/inference.md b/docs/en/inference.md index d5b626ae..9a321bf4 100644 --- a/docs/en/inference.md +++ b/docs/en/inference.md @@ -44,9 +44,9 @@ When converting to an inference model, the configuration file used is the same a After the conversion is successful, there are three files in the model save directory: ``` ├── product_ResNet50_vd_aliproduct_v1.0_infer -│ ├── inference.pdiparams # 识别inference模型的参数文件 -│ ├── inference.pdiparams.info # 识别inference模型的参数信息,可忽略 -│ └── inference.pdmodel # 识别inference模型的program文件 +│ ├── inference.pdiparams +│ ├── inference.pdiparams.info +│ └── inference.pdmodel ``` @@ -71,9 +71,9 @@ python3.7 tools/export_model.py -c ppcls/configs/ImageNet/ResNet/ResNet50_vd.yam After the conversion is successful, there are three files in the model save directory: ``` ├── class_ResNet50_vd_ImageNet_infer -│ ├── inference.pdiparams # 识别inference模型的参数文件 -│ ├── inference.pdiparams.info # 识别inference模型的参数信息,可忽略 -│ └── inference.pdmodel # 识别inference模型的program文件 +│ ├── inference.pdiparams +│ ├── inference.pdiparams.info +│ └── inference.pdmodel ``` -- GitLab