:py:mod:`pocketpose.converters.onnx2tf`
=======================================

.. py:module:: pocketpose.converters.onnx2tf


Module Contents
---------------

Classes
~~~~~~~

.. autoapisummary::

   pocketpose.converters.onnx2tf.ONNX2TFConverter




.. py:class:: ONNX2TFConverter(overwrite=True, log_level=logging.INFO)


   Bases: :py:obj:`pocketpose.converters.base_converter.BaseConverter`

   Converts ONNX models to TensorFlow format. 

   .. py:method:: _sanitize(onnx_model)


   .. py:method:: _convert(model, save_path, *args, **kwargs)

      Converts an ONNX model to TensorFlow format (.pb) and saves it to disk.

      Args:
          model (str): Path to the ONNX model to convert
          save_path (str): Path to save the converted model to. This should be a directory.

      Returns:
          save_path (str): Path to the converted model (same as the input save path) if successful.



