From d8466cf6ee3aa546188c2934fd2a5341765b13b3 Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Fri, 16 Oct 2020 18:12:20 +0300 Subject: [PATCH] Small fix for python doc (#2696) --- .../ie_bridges/python/src/openvino/inference_engine/ie_api.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inference-engine/ie_bridges/python/src/openvino/inference_engine/ie_api.pyx b/inference-engine/ie_bridges/python/src/openvino/inference_engine/ie_api.pyx index cea04fc..21cd5aa 100644 --- a/inference-engine/ie_bridges/python/src/openvino/inference_engine/ie_api.pyx +++ b/inference-engine/ie_bridges/python/src/openvino/inference_engine/ie_api.pyx @@ -244,7 +244,7 @@ cdef class IECore: versions[device].major = ver.apiVersion.major return versions - ## Reads a network from the Intermediate Representation (IR) and creates an `IENetwork`. + ## Reads a network from Intermediate Representation (IR) or ONNX formats and creates an `IENetwork`. # @param model: A `.xml`, `.onnx`or `.prototxt` model file or string with IR. # @param weights: A `.bin` file of the IR. Depending on `init_from_buffer` value, can be a string path or # bytes with file content. -- 2.7.4