Tensorflow.js is an open-source library which is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment.
The .cosh() function is used to find the hyperbolic cos of the stated tensor input and is done element wise.
Syntax:
tf.cosh(x)
Parameters:
- x: It is the tensor input whose cosh value is to be computed, and it can be of type tf.Tensor, or TypedArray, or Array.
Return Value: It returns the tf.Tensor object.
Example 1: In this example, we are defining an input tensor of integer type and then printing the cosh value of it. For creating an input tensor we are utilizing the .tensor1d() method and in order to print the output we are using the .print() method.
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining tensor input elements const y = tf.tensor1d([1, 7, 0, 3]); // Calling cosh() method and // printing output y.cosh().print(); |
Output:
Tensor [1.5430806, 548.3170776, 1, 10.0676613]
Example 2: In this example, float type values are considered as tensor input and the parameter is passed directly to the cosh function.
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining float values var val = [1.5, .4, .22]; // Calling tensor1d method const y = tf.tensor1d(val); // Calling cosh() method var res = tf.cosh(y) // Printing output res.print(); |
Output:
Tensor [2.3524094, 1.0810723, 1.0242977]
Reference: https://js.tensorflow.org/api/latest/#cosh