adspace


What are operations in Tensorflow?

Answer Posted / Anand Singh Tomar

TensorFlow provides a wide range of mathematical operations to manipulate tensors. Some common operations include:

1. Arithmetic Operations: Addition, subtraction, multiplication, and division can be performed on tensors.

2. Element-wise Operations: These operations are applied component-wise to every element in the tensor, such as square root or exponential functions.

3. Reduction Operations: These operations reduce a tensor to a single value by summing, averaging, or finding the maximum/minimum of the elements.

4. Reshaping Operations: TensorFlow allows for changing the shape (number of dimensions and size) of tensors using various reshape functions.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the apis outside tensorflow project?

77