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.shuffleCombo() se usa para barajar las dos arrays indicadas en orden con la ayuda del algoritmo de Fisher-Yates.
Sintaxis:
tf.util.shuffleCombo (array, array2)
Parámetros:
- array1: es la primera array indicada que se barajará. Puede ser del tipo tf.any()[], Uint32Array, Int32Array o Float32Array.
- array2: es la segunda array indicada que se barajará. Puede ser del tipo tf.any()[], Uint32Array, Int32Array o Float32Array. Además, se baraja con la permutación equivalente a la de la primera array indicada.
Valor devuelto: Devuelve nulo.
Ejemplo 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining first and second array const arr = [11, 12, 13, 14, 15]; const arr2 = [16, 17, 18, 19, 20]; // Calling tf.util.shuffleCombo() method and // printing output tf.util.shuffleCombo(arr, arr2); console.log(arr, arr2);
Producción:
12,14,11,15,13 17,19,16,20,18
Ejemplo 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining first and second array // of float values const arr = [4.5, 6.8, 17.1, 21.23, 45.8]; const arr2 = [47.9, 50.4, 52.5, 62.6, 73.7]; // Calling tf.util.shuffleCombo() method and // printing output tf.util.shuffleCombo(arr, arr2); console.log(arr, arr2);
Producción:
17.1,21.23,45.8,4.5,6.8 52.5,62.6,73.7,47.9,50.4
Referencia: https://js.tensorflow.org/api/latest/#util.shuffleCombo
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA