当前位置: 首页>>代码示例>>Python>>正文


Python onnx.numpy_helper方法代码示例

本文整理汇总了Python中onnx.numpy_helper方法的典型用法代码示例。如果您正苦于以下问题:Python onnx.numpy_helper方法的具体用法?Python onnx.numpy_helper怎么用?Python onnx.numpy_helper使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在onnx的用法示例。


在下文中一共展示了onnx.numpy_helper方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _onnx_initializer_to_input_dict_items

# 需要导入模块: import onnx [as 别名]
# 或者: from onnx import numpy_helper [as 别名]
def _onnx_initializer_to_input_dict_items(initializer):
  """ Convert ONNX graph initializer to input dict items.

  :param initializer: ONNX graph initializer, list of TensorProto.
  :return: List of input dict items.
  """
  def tensor2list(onnx_tensor):
    # Use the onnx.numpy_helper because the data may be raw
    return numpy_helper.to_array(onnx_tensor).flatten().tolist()

  return [(init.name,
            tf.constant(
                tensor2list(init),
                shape=init.dims,
                dtype=onnx2tf(init.data_type)))
          for init in initializer] 
开发者ID:uTensor,项目名称:utensor_cgen,代码行数:18,代码来源:onnx.py

示例2: to_array

# 需要导入模块: import onnx [as 别名]
# 或者: from onnx import numpy_helper [as 别名]
def to_array(self):  # type: () -> numpy.ndarray
        """Get the value of this tensor as a Numpy array."""
        return onnx.numpy_helper.to_array(self._proto) 
开发者ID:NervanaSystems,项目名称:ngraph-python,代码行数:5,代码来源:model_wrappers.py

示例3: onnx_tensor_to_list

# 需要导入模块: import onnx [as 别名]
# 或者: from onnx import numpy_helper [as 别名]
def onnx_tensor_to_list(tensor):
    return onnx.numpy_helper.to_array(tensor).flatten().tolist() 
开发者ID:SSGAalto,项目名称:minionn,代码行数:4,代码来源:onnx_helper.py

示例4: get_numpy

# 需要导入模块: import onnx [as 别名]
# 或者: from onnx import numpy_helper [as 别名]
def get_numpy(tensor_proto):
    """Grab data in TensorProto and convert to numpy array."""
    try:
        from onnx.numpy_helper import to_array
    except ImportError as e:
        raise ImportError(
            "Unable to import onnx which is required {}".format(e))
    return to_array(tensor_proto) 
开发者ID:apache,项目名称:incubator-tvm,代码行数:10,代码来源:onnx.py


注:本文中的onnx.numpy_helper方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。