Tuesday, October 7, 2025
HomeLanguagesPython – tensorflow.get_static_value()

Python – tensorflow.get_static_value()

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
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS