From 200026f28bcadc0081217c8859512aba4bfccb55 Mon Sep 17 00:00:00 2001 From: Eddy Kim Date: Fri, 25 Mar 2022 19:39:33 +0900 Subject: [PATCH] Missing backslashes right after mo (#11216) --- .../convert_model/onnx_specific/Convert_Faster_RCNN.md | 2 +- .../convert_model/onnx_specific/Convert_Mask_RCNN.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Faster_RCNN.md b/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Faster_RCNN.md index 7054613af32..c23da1a1be3 100644 --- a/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Faster_RCNN.md +++ b/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Faster_RCNN.md @@ -6,7 +6,7 @@ These instructions are applicable only to the Faster R-CNN model converted to th **Step 2**. To generate the Intermediate Representation (IR) of the model, change your current working directory to the Model Optimizer installation directory and run the Model Optimizer with the following parameters: ```sh - mo + mo \ --input_model FasterRCNN-10.onnx \ --input_shape [1,3,800,800] \ --input 0:2 \ diff --git a/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Mask_RCNN.md b/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Mask_RCNN.md index 6f641625092..28437c76100 100644 --- a/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Mask_RCNN.md +++ b/docs/MO_DG/prepare_model/convert_model/onnx_specific/Convert_Mask_RCNN.md @@ -6,7 +6,7 @@ These instructions are applicable only to the Mask R-CNN model converted to the **Step 2**. To generate the Intermediate Representation (IR) of the model, change your current working directory to the Model Optimizer installation directory and run the Model Optimizer with the following parameters: ```sh - mo + mo \ --input_model mask_rcnn_R_50_FPN_1x.onnx \ --input "0:2" \ --input_shape [1,3,800,800] \