Wednesday, May 27, 2026
HomeLanguagesTensorFlow – How to create a tensor of all ones that has...

TensorFlow – How to create a tensor of all ones that has the same shape as the input tensor

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

Method Used:

  • ones_like: This method accepts a Tensor as input and returns a Tensor with same shape having all values set to one.

Example 1:

Python3




# importing the library
import tensorflow as tf
  
# Initializing the Input
input = tf.constant([[1, 2, 3], [4, 5, 6]])
  
# Generating Tensor with having all values as 1
res = tf.ones_like(input)
  
# Printing the resulting Tensors
print("Res: ", res )


Output:

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

Example 2: This example explicitly specifies the type of the resulting tensor.

Python3




# importing the library
import tensorflow as tf
  
# Initializing the Input
input = tf.constant([[1, 2, 3], [4, 5, 6]])
  
# Printing the Input
print("Input: ", input)
  
# Generating Tensor with having all values as 1
res = tf.ones_like(input, dtype = tf.float64)
  
# Printing the resulting Tensors
print("Res: ", res )


Output:

Input:  tf.Tensor(
[[1 2 3]
 [4 5 6]], shape=(2, 3), dtype=int32)
Res:  tf.Tensor(
[[1. 1. 1.]
 [1. 1. 1.]], shape=(2, 3), dtype=float64)


Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS