The tensorflow.math module provides support for many basic mathematical operations. The tf.sinh () [alias tf.math.sinh ] function provides support for the hyperbolic sine function in Tensorflow. Input in radians is expected. Input type — tensor, and if the input contains more than one element, the element-wise hyperbolic sine is calculated.
Syntax : tf.sinh (x, name = None) or tf.math.sinh (x, name = None)
Parameters : x : A tensor of any of the following types: float16, float32, float64 , complex64, or complex128. name (optional): The name for the operation.
Return type : A tensor with the same type as that of x.