Tensorflow.js es una biblioteca de código abierto desarrollada por Google para ejecutar modelos de aprendizaje automático y redes neuronales de aprendizaje profundo en el entorno del navegador o del Node.
La función tf.onesLike() se usa para crear un tf.Tensor con todos los elementos establecidos en 1 con la misma forma que el tensor dado.
Sintaxis:
tf.onesLike (x)
Parámetros:
- x: un tf.Tensor cuyos todos los elementos se establecerán como 1.
Valor devuelto: Devuelve un tf.Tensor.
Ejemplo 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Creating the tensor const x = tf.tensor([1, 2]); // Printing the tensor after setting the value of tensor to 1 tf.onesLike(x).print();
Producción:
Tensor [1, 1]
Ejemplo 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Creating the tensor const x = tf.tensor2d([8, 2, 5, 6], [2, 2]); // Printing the tensor after setting the value of tensor to 1 tf.onesLike(x).print();
Producción:
Tensor [[1, 1], [1, 1]]
Referencia: https://js.tensorflow.org/api/latest/#onesLike