Tensorflow.js es una biblioteca de código abierto desarrollada por 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 .disposeVariables() se usa para desechar cada variable almacenada en el motor de back-end.
Sintaxis:
tf.disposeVariables()
Parámetros: este método no acepta ningún parámetro.
Valor devuelto: Devuelve nulo.
Ejemplo 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Declaring a variable var x = tf.tensor([1, 2, 3, 4]); // Calling disposeVariables() method tf.disposeVariables(); // Printing output console.log("Variables disposed.")
Producción:
Variables disposed.
Ejemplo 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Declaring two tensors var t1 = tf.tensor([1.1, 2.1, 3.1]); var t2 = tf.tensor([null, 0, -2]); // Calling dispose() and disposeVariables() // method tf.dispose(t2); tf.disposeVariables(); // Printing outputs console.log(t1); console.log(t2);
Producción:
Tensor [1.1, 2.0999999, 3.0999999] An error occurred on line: 15 Tensor is disposed.
Aquí, ocurrió un error para el tensor t2 al estar dispuesto.
Referencia: https://js.tensorflow.org/api/latest/#disposeVariables
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA