MCPcopy Create free account
hub / github.com/apache/singa / acosh

Function acosh

python/singa/autograd.py:2136–2144  ·  view source on GitHub ↗

Calculates the hyperbolic arccosine of the given input tensor element-wise. Args: x (Tensor): Input tensor Returns: Tensor, the output

(x)

Source from the content-addressed store, hash-verified

2134
2135
2136def acosh(x):
2137 """
2138 Calculates the hyperbolic arccosine of the given input tensor element-wise.
2139 Args:
2140 x (Tensor): Input tensor
2141 Returns:
2142 Tensor, the output
2143 """
2144 return Acosh()(x)[0]
2145
2146
2147class Sin(Operator):

Callers

nothing calls this directly

Calls 1

AcoshClass · 0.85

Tested by

no test coverage detected