VOOZH about

URL: https://www.geeksforgeeks.org/python/python-tensorflow-constant/

⇱ Python - tensorflow.constant() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - tensorflow.constant()

Last Updated : 14 Mar, 2023

TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks.

constant() is used to create a Tensor from tensor like objects like list.

Syntax: tensorflow.constant( value, dtype, shape, name )

Parameters:

  • value: It is the value that needed to be converted to Tensor.
  • dtype(optional): It defines the type of the output Tensor.
  • shape(optional): It defines the dimension of output Tensor.
  • name(optional): It defines the name for the operation.

Returns: It returns a Tensor.

Example 1: From Python list

Output:

l: [1, 2, 3, 4]
x: tf.Tensor([1 2 3 4], shape=(4, ), dtype=int32)

Example 2: From Python tuple

Output:

l: (1, 2, 3, 4)
x: tf.Tensor([1. 2. 3. 4.], shape=(4, ), dtype=float64)
Comment
Article Tags: