Python - tensorflow.get_static_value() Last Updated : 14 Mar, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning neural networks. get_static_value() is used to calculate the static value of Tensor. If static value can't be calculated it will return None. Syntax: tensorflow.get_static_value(tensor, partial) Parameters: tensor: It is the input Tensor whose static value need to be calculated.partial: Either True or False with default value set to False. It is set to True to allow returned array to have partially calculated values. Returns: It returns a numpy ndarray that contains the calculated result. Example 1: Python3 # Importing the library import tensorflow as tf # Initializing the input data = tf.constant([[1, 2, 3], [3, 4, 5], [5, 6, 7]]) # Printing the input print('data: ',data) # Calculating result res = tf.get_static_value(data) # Printing the result print('res: ',res) Output: data: tf.Tensor( [[1 2 3] [3 4 5] [5 6 7]], shape=(3, 3), dtype=int32) res: [[1 2 3] [3 4 5] [5 6 7]] Example 2: Python3 # Importing the library import tensorflow as tf # Initializing the input data = tf.Variable([[1, 2, 3], [3, 4, 5], [5, 6, 7]]) # Printing the input print('data: ',data) # Calculating result res = tf.get_static_value(data) # Printing the result print('res: ',res) Output: data: <tf.Variable 'Variable:0' shape=(3, 3) dtype=int32, numpy= array([[1, 2, 3], [3, 4, 5], [5, 6, 7]], dtype=int32)> res: None Comment More infoAdvertise with us Next Article Python - tensorflow.gather() A aman neekhara Follow Improve Article Tags : Python Python-Tensorflow Python Tensorflow-math-functions Practice Tags : python Similar Reads Python - tensorflow.clip_by_value() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. clip_by_value() is used to clip a Tensor values to a specified min and max. Syntax: tensorflow.clip_by_value( t, clip_value_min, clip_value_max, name ) Parameter: t: It 2 min read Python - tensorflow.eye() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. tensorflow.eye() is used to generate identity matrix. Syntax: tensorflow.eye( num_rows, num_columns, batch_shape, dtype, name) Parameters: num_rows: It is int32 scalar 2 min read Python - tensorflow.gather() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. gather() is used to slice the input tensor based on the indices provided. Syntax: tensorflow.gather( params, indices, validate_indices, axis, batch_dims, name) Paramete 2 min read Python - tensorflow.GradientTape.reset() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. reset() is used to clear all information that is stored by the Tape. Syntax: reset() Parameters: It doesn't accept any parameters. Returns: It returns none. Example 1: 2 min read Python - tensorflow.get_logger() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. get_logger() is used to get the logger instance. Syntax: tensorflow.get_logger() Parameters: It doesn't accept any parameters. Returns: It returns the logger instance. 1 min read Python - tensorflow.convert_to_tensor() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. convert_to_tensor() is used to convert the given value to a Tensor Syntax: tensorflow.convert_to_tensor( value, dtype, dtype_hint, name ) Parameters: value: It is the va 2 min read Like