bgcf readme amend

This commit is contained in:
unknown 2021-06-08 17:15:28 +08:00
parent 4fc5f152ac
commit 4270205f00
2 changed files with 5 additions and 5 deletions

View File

@ -320,7 +320,7 @@ python export.py --ckpt_file [CKPT_PATH] --file_name [FILE_NAME] --file_format [
```
The ckpt_file parameter is required,
`EXPORT_FORMAT` should be in ["AIR", "MINDIR"]
`file_format` should be in ["AIR", "MINDIR"]
### Infer on Ascend310
@ -331,7 +331,7 @@ Before performing inference, the mindir file must be exported by `export.py` scr
bash run_infer_310.sh [MINDIR_PATH] [DATASET_NAME] [NEED_PREPROCESS] [DEVICE_ID]
```
- `NEED_PREPROCESS` means weather need preprocess or not, it's value is 'y' or 'n'.
- `NEED_PREPROCESS` means weather the original dataset processed in the mindrecord format needs to be converted to the binary format, it's value is 'y' or 'n'.
- `DEVICE_ID` is optional, default value is 0.
### result

View File

@ -343,18 +343,18 @@ python export.py --ckpt_file [CKPT_PATH] --file_name [FILE_NAME] --file_format [
```
参数ckpt_file为必填项
`EXPORT_FORMAT` 必须在 ["AIR", "MINDIR"]中选择。
`file_format` 必须在 ["AIR", "MINDIR"]中选择。
### 在Ascend310执行推理
在执行推理前mindir文件必须通过`export.py`脚本导出。以下展示了使用minir模型执行推理的示例。
在执行推理前mindir文件必须通过`export.py`脚本导出。以下展示了使用mindir模型执行推理的示例。
```shell
# Ascend310 inference
bash run_infer_310.sh [MINDIR_PATH] [DATASET_NAME] [NEED_PREPROCESS] [DEVICE_ID]
```
- `NEED_PREPROCESS` 表示数据是否需要预处理,取值范围为 'y' 或者 'n'。
- `NEED_PREPROCESS` 表示数据是否需要将推理中处理为mindrecord格式的原始数据集转换为二进制格式,取值范围为 'y' 或者 'n'。
- `DEVICE_ID` 可选默认值为0。
### 结果