Función Tensorflow.js tf.util.shuffle()

Tensorflow.js es una biblioteca de código abierto que está desarrollando Google para ejecutar modelos de aprendizaje automático, así como redes neuronales de aprendizaje profundo en el entorno del navegador o del Node.

La función .util.shuffle() se usa para barajar la array indicada en orden con la ayuda del algoritmo de Fisher-Yates.

Sintaxis:  

tf.util.shuffle(array)

Parámetros:  

  • array: Es la array indicada que se va a barajar. Puede ser del tipo tf.any()[], Uint32Array, Int32Array o Float32Array.

Valor devuelto: Devuelve nulo.

Ejemplo 1:

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining array
const arr = [11, 12, 13, 14, 15];
  
// Calling tf.util.shuffle() method and
// printing output
tf.util.shuffle(arr);
console.log(arr);

Producción:

14,12,11,13,15

Ejemplo 2:

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining array of float values
const arr = [1.1, 1.2, 1.3, 1.4, 1.5];
  
// Calling tf.util.shuffle() method and
// printing output
tf.util.shuffle(arr);
console.log(arr);

Producción:

1.5,1.2,1.3,1.1,1.4

Referencia: https://js.tensorflow.org/api_node/2.0.1/#util.shuffle

Publicación traducida automáticamente

Artículo escrito por nidhi1352singh 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 *