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
1. ``otx export`` exports a trained Pytorch `.pth` model to the OpenVINO™ Intermediate Representation (IR) format.
163
-
It allows running the model on the Intel hardware much more efficiently, especially on the CPU. Also, the resulting IR model is required to run POT optimization. IR model consists of two files: ``openvino.xml`` for weights and ``openvino.bin`` for architecture.
163
+
It allows running the model on the Intel hardware much more efficiently, especially on the CPU. Also, the resulting IR model is required to run PTQ optimization. IR model consists of two files: ``openvino.xml`` for weights and ``openvino.bin`` for architecture.
164
164
165
165
2. Run the command line below to export the trained model
166
166
and save the exported model to the ``openvino`` folder.
@@ -192,24 +192,19 @@ using ``otx eval`` and passing the IR model path to the ``--load-weights`` param
1. You can further optimize the model with ``otx optimize``.
208
-
Currently, only POT is supported for action detection. NNCF will be supported in near future.
203
+
Currently, only PTQ is supported for action detection. NNCF will be supported in near future.
209
204
Refer to :doc:`optimization explanation <../../../explanation/additional_features/models_optimization>` section for more details on model optimization.
210
205
211
206
2. Example command for optimizing
212
-
OpenVINO™ model (.xml) with OpenVINO™ POT.
207
+
OpenVINO™ model (.xml) with OpenVINO™ PTQ.
213
208
214
209
.. code-block::
215
210
@@ -218,9 +213,11 @@ OpenVINO™ model (.xml) with OpenVINO™ POT.
0 commit comments