diff --git a/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md b/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md index 90bc09ff2e7..b1de09f44bd 100644 --- a/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md +++ b/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md @@ -61,9 +61,9 @@ To run the sample, you can use RMNet_SSD or other object-detection models. You c > > The sample accepts models in ONNX format (.onnx) that do not require preprocessing. -You can do inference of an image using a trained RMNet_SSD network on FPGA with fallback to CPU using the following command: +You can do inference of an image using the [person detection SSD model](@ref omz_models_intel_person_detection_retail_0013_description_person_detection_retail_0013) from the Open Model Zoo on CPU using the following command: ``` - python3 object_detection_sample_ssd.py -i /cat.bmp -m /alexnet_fp32.xml -nt 5 -d HETERO:FPGA,CPU + python3 object_detection_sample_ssd.py -i /cat.bmp -m /person-detection-retail-0013.xml -d CPU ``` ## Sample Output diff --git a/inference-engine/samples/object_detection_sample_ssd/README.md b/inference-engine/samples/object_detection_sample_ssd/README.md index 46849d90bfe..019c2136f82 100644 --- a/inference-engine/samples/object_detection_sample_ssd/README.md +++ b/inference-engine/samples/object_detection_sample_ssd/README.md @@ -45,11 +45,11 @@ To run the sample, you can use [public](@ref omz_models_public_index) or [Intel' For example, to do inference on a CPU with the OpenVINO™ toolkit person detection SSD models, run one of the following commands: ```sh -./object_detection_sample_ssd -m person-detection-retail-0013.xml -i /inputImage.bmp -d CPU +./object_detection_sample_ssd -m /person-detection-retail-0013.xml -i /inputImage.bmp -d CPU ``` or ```sh -./object_detection_sample_ssd -m person-detection-retail-0002.xml -i /inputImage.jpg -d CPU +./object_detection_sample_ssd -m /person-detection-retail-0002.xml -i /inputImage.jpg -d CPU ``` ## Sample Output