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


Python gen_math_ops._tanh_grad函数代码示例

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


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

示例1: _TanhGrad

def _TanhGrad(op, grad):
  """Returns grad * (1 - tanh(x) * tanh(x))."""
  y = op.outputs[0]  # y = tanh(x)
  with ops.control_dependencies([grad.op]):
    y = math_ops.conj(y)
    # pylint: disable=protected-access
    return gen_math_ops._tanh_grad(y, grad)
开发者ID:Hwhitetooth,项目名称:tensorflow,代码行数:7,代码来源:math_grad.py

示例2: _TanhGrad

def _TanhGrad(op, grad):
  """Returns grad * (1 - tanh(x) * tanh(x))."""
  y = op.outputs[0]  # y = tanh(x)
  with ops.control_dependencies([grad.op]):
    if y.dtype.is_complex:
      y = math_ops.conj(y)
    return gen_math_ops._tanh_grad(y, grad)
开发者ID:JamesFysh,项目名称:tensorflow,代码行数:7,代码来源:math_grad.py

示例3: _TanhGradGrad

def _TanhGradGrad(op, grad):
  with ops.control_dependencies([grad.op]):
    a = math_ops.conj(op.inputs[0])
    b = math_ops.conj(op.inputs[1])
    # pylint: disable=protected-access
    return grad * -2.0 * b * a, gen_math_ops._tanh_grad(a, grad)
开发者ID:Hwhitetooth,项目名称:tensorflow,代码行数:6,代码来源:math_grad.py


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