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 .enableDebugMode() se usa para habilitar el modo de depuración que registraría datos sobre cada kernel ejecutado, es decir, el tiempo de ejecución de la implementación del kernel, incluido el rango, el tamaño y la forma del tensor resultante.
Nota:
- El modo de depuración reduciría sustancialmente la velocidad de nuestro software porque descargaría el resultado final de cada acción individual dentro de la CPU que no debe utilizarse en la producción.
- El modo de depuración no afectaría los datos de tiempo del rendimiento del kernel ya que el tiempo de descarga aquí no se evalúa en el tiempo de rendimiento del kernel.
Sintaxis:
tf.enableDebugMode()
Parámetros: Este método no contiene ningún parámetro.
Valor devuelto: Devuelve nulo.
Ejemplo 1:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Calling enableDebugMode() method await tf.enableDebugMode(); // Setting prod mode of the // environment tf.env().set('PROD', false); // Printing output console.log(tf.env().flags);
Producción:
{ "IS_BROWSER": true, "IS_NODE": false, "DEBUG": true, "CPU_HANDOFF_SIZE_THRESHOLD": 128, "PROD": false }
Ejemplo 2:
Javascript
// Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Calling enableDebugMode() method await tf.enableDebugMode(); // Setting debug mode of the environment tf.env().set("DEBUG", !0) // Setting textures of the environment tf.env().set('WEBGL_FORCE_F16_TEXTURES', true); // Calling ready() method await tf.ready(); // Printing output console.log(tf.env().features);
Producción:
{ "IS_BROWSER": true, "IS_NODE": false, "DEBUG": true, "CPU_HANDOFF_SIZE_THRESHOLD": 128, "PROD": true, "WEBGL_FORCE_F16_TEXTURES": true, "WEBGL_VERSION": 2, "HAS_WEBGL": true }
Referencia: https://js.tensorflow.org/api/latest/#enableDebugMode
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA