Función Tensorflow.js tf.unstack()

. También ayuda a los desarrolladores a desarrollar modelos ML en lenguaje JavaScript y puede usar ML directamente en el navegador o en Node.js.

La función tf.unstack() se usa para desapilar un tf,tensores en un tf.tensor de rango r-1.

Sintaxis:

tf.stack(x, axis)

Parámetros:

  • x: un objeto tensor.
  • eje: Es un eje del desapilado a lo largo.

Valor devuelto: Devuelve tf.Tensor[]

Ejemplo 1:

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Creating a tensor2d
const a = tf.tensor2d([1, 2, 3, 4], [2, 2]);
  
// Printing the tensor
tf.unstack(a).forEach(tensor => tensor.print());

Producción:

Tensor
    [1, 2]
Tensor
    [3, 4]

Ejemplo 2:

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Creating tensor2d
const b = tf.tensor2d([1, 2, 3, 5, 8, 13, 21, 34, 55], [3, 3]);
  
// Printing the tensor
tf.unstack(b).forEach(tensor => tensor.print());

Producción:

Tensor
    [1, 2, 3]
Tensor
    [5, 8, 13]
Tensor
    [21, 34, 55]

Referencia: https://js.tensorflow.org/api/latest/#unstack

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *