You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[MO] Remove Apache MxNet models support in openvino-dev (#26800)
**Details:** Due to drop of Python 3.8, MxNet support is removed. MxNet
is archived project and distributed only up to Python 3.8
**Ticket:** 153365
---------
Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
Copy file name to clipboardexpand all lines: docs/articles_en/documentation/legacy-features/transition-legacy-conversion-api/legacy-conversion-api/[legacy]-model-optimizer-faq.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -234,7 +234,7 @@ Q14. What does the message "Cannot infer shape for node {} because there is no C
234
234
Q15. What does the message "Framework name can not be deduced from the given options. Use --framework to choose one of Caffe, TensorFlow, MXNet" mean?
**A:** You have run Model Optimizer without a flag ``--framework caffe|tf|mxnet``. Model Optimizer tries to deduce the framework by the extension of input model file (``.pb``for TensorFlow, ``.caffemodel``for Caffe, ``.params``for Apache MXNet). Your input model might have a different extension and you need to explicitly set the source framework. For example, use ``--framework caffe``.
237
+
**A:** You have run Model Optimizer without a flag ``--framework caffe|tf``. Model Optimizer tries to deduce the framework by the extension of input model file (``.pb``for TensorFlow, ``.caffemodel``for Caffe, ``.params``for Apache MXNet). Your input model might have a different extension and you need to explicitly set the source framework. For example, use ``--framework caffe``.
@@ -149,14 +148,14 @@ Users in China might encounter errors while downloading sources via PIP during O
149
148
If you use zsh (Z shell) interpreter, that is the default shell for macOS starting with version 10.15 (Catalina), you may encounter the following error while installing `openvino-dev` package with extras:
150
149
151
150
```sh
152
-
pip install openvino-dev[tensorflow2,mxnet,caffe]
153
-
zsh: no matches found: openvino-dev[tensorflow2,mxnet,caffe]
151
+
pip install openvino-dev[tensorflow2,caffe]
152
+
zsh: no matches found: openvino-dev[tensorflow2,caffe]
154
153
```
155
154
156
155
By default zsh interprets square brackets as an expression for pattern matching. To resolve this issue, you need to escape the command with quotes:
Copy file name to clipboardexpand all lines: src/tests/test_utils/functional_test_utils/layer_tests_summary/conformance_helper_tools/conformance_vs_accuracy_comparator.py
0 commit comments