• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python nn_ops.depthwise_conv2d_native_backprop_filter函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中tensorflow.python.ops.nn_ops.depthwise_conv2d_native_backprop_filter函数的典型用法代码示例。如果您正苦于以下问题:Python depthwise_conv2d_native_backprop_filter函数的具体用法?Python depthwise_conv2d_native_backprop_filter怎么用?Python depthwise_conv2d_native_backprop_filter使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: _GetVal

    def _GetVal(use_xla):
      with self.cached_session():
        t0 = array_ops.placeholder(np.float32, shape=input_sizes)
        t1 = constant_op.constant(filter_sizes, shape=[len(filter_sizes)])
        t2 = array_ops.placeholder(np.float32, shape=output_sizes)
        native_t0 = t0
        native_t2 = t2
        strides = [1, stride, stride, 1]

        if use_xla:
          if data_format == "NCHW":
            # Transpose from NWHC input to NCHW
            # Ex. [4, 5, 5, 48] to [4, 48, 5, 5]
            native_t0 = array_ops.transpose(t0, [0, 3, 1, 2])
            native_t2 = array_ops.transpose(t2, [0, 3, 1, 2])
            strides = [1, 1, stride, stride]
          with self.test_scope():
            backprop = nn_ops.depthwise_conv2d_native_backprop_filter(
                native_t0,
                t1,
                native_t2,
                strides=strides,
                padding=padding,
                data_format=data_format)
        else:
          # For CPU, the format NCHW is not supported. Therefore we always use
          # NHWC here.
          backprop = nn_ops.depthwise_conv2d_native_backprop_filter(
              native_t0, t1, native_t2, strides=strides, padding=padding)
        ret = backprop.eval({t0: x0, t2: x2})
        self.assertShapeEqual(ret, backprop)
        return ret
开发者ID:Albert-Z-Guo,项目名称:tensorflow,代码行数:32,代码来源:depthwise_conv_op_test.py


示例2: _GetVal

 def _GetVal(use_xla):
   with self.test_session():
     t0 = array_ops.placeholder(np.float32, shape=input_sizes)
     t1 = constant_op.constant(filter_sizes, shape=[len(filter_sizes)])
     t2 = array_ops.placeholder(np.float32, shape=output_sizes)
     if use_xla:
       with self.test_scope():
         backprop = nn_ops.depthwise_conv2d_native_backprop_filter(
             t0, t1, t2, strides=[1, stride, stride, 1], padding=padding)
     else:
       backprop = nn_ops.depthwise_conv2d_native_backprop_filter(
           t0, t1, t2, strides=[1, stride, stride, 1], padding=padding)
     ret = backprop.eval({t0: x0, t2: x2})
     self.assertShapeEqual(ret, backprop)
     return ret
开发者ID:Brandon1016,项目名称:tensorflow,代码行数:15,代码来源:depthwise_conv_op_test.py


示例3: _DepthwiseConv2dNativeBackpropInputGrad

def _DepthwiseConv2dNativeBackpropInputGrad(op, grad):
  """The derivatives for deconvolution.

  Args:
    op: the Deconvolution op.
    grad: the tensor representing the gradient w.r.t. the output

  Returns:
    the gradients w.r.t. the input and the filter
  """
  return [
      None,
      nn_ops.depthwise_conv2d_native_backprop_filter(
          grad,
          array_ops.shape(op.inputs[1]),
          op.inputs[2],
          dilations=op.get_attr("dilations"),
          strides=op.get_attr("strides"),
          padding=op.get_attr("padding"),
          data_format=op.get_attr("data_format")),
      nn_ops.depthwise_conv2d_native(
          grad,
          op.inputs[1],
          dilations=op.get_attr("dilations"),
          strides=op.get_attr("strides"),
          padding=op.get_attr("padding"),
          data_format=op.get_attr("data_format"))
  ]
开发者ID:adit-chandra,项目名称:tensorflow,代码行数:28,代码来源:nn_grad.py


示例4: _DepthwiseConv2dNativeGrad

def _DepthwiseConv2dNativeGrad(op, grad):
  return [
      nn_ops.depthwise_conv2d_native_backprop_input(
          array_ops.shape(op.inputs[0]), op.inputs[1], grad,
          op.get_attr("strides"), op.get_attr("padding")),
      nn_ops.depthwise_conv2d_native_backprop_filter(
          op.inputs[0], array_ops.shape(op.inputs[1]), grad,
          op.get_attr("strides"), op.get_attr("padding"))
  ]
开发者ID:Jackhuang945,项目名称:tensorflow,代码行数:9,代码来源:nn_grad.py


示例5: _GetVal

 def _GetVal(use_gpu):
   with self.cached_session(use_gpu=use_gpu):
     t0 = constant_op.constant(x0, shape=input_sizes)
     t1 = constant_op.constant(filter_sizes, shape=[len(filter_sizes)])
     t2 = constant_op.constant(x2, shape=output_sizes)
     backprop = nn_ops.depthwise_conv2d_native_backprop_filter(
         t0, t1, t2, strides=[1, stride, stride, 1], padding=padding)
     ret = self.evaluate(backprop)
     self.assertShapeEqual(ret, backprop)
     return ret
开发者ID:bunbutter,项目名称:tensorflow,代码行数:10,代码来源:depthwise_conv_op_test.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap