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.createShuffledIndices() se usa para crear una nueva array que tiene índices aleatorios según la cantidad indicada.
Sintaxis: Esta función acepta el siguiente parámetro.
tf.util.createShuffledIndices(n)
Parámetros:
- n: Es el número según el cual se imprimen aleatoriamente los índices.
Valor de retorno: Devuelve Uint32Array .
Ejemplo 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Calling util.createShuffledIndices() method // and printing output const randm_indxes = tf.util.createShuffledIndices(11); console.log(randm_indxes);
Producción:
Uint32Array(11) [ 9, 5, 4, 6, 7, 8, 0, 1, 2, 10, 3 ]
Ejemplo 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining n var num = (5*2*1) // Calling util.createShuffledIndices() method // and printing output console.log(tf.util.createShuffledIndices(num));
Producción:
Uint32Array(10) [ 5, 1, 9, 2, 0, 4, 8, 7, 6, 3 ]
Referencia: https://js.tensorflow.org/api/latest/#util.createShuffledIndices
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA