. También ayuda a los desarrolladores a desarrollar modelos ML en lenguaje JavaScript y puede usar ML directamente en el navegador o en Node.js.
La función tf.backend() se usa para obtener el backend actual del navegador actual.
Sintaxis:
tf.backend()
Parámetros: No acepta ningún parámetro.
Valor devuelto: Devuelve KernalBackend.
Ejemplo 1:
Javascript
// Setting the backend tf.setBackend("cpu") // Getting the backend using // backend method console.log(tf.backend())
Producción:
Ejemplo 2:
Javascript
// Setting the backend tf.setBackend("cpu") // Getting the backend using // backend method console.log("Block Size is ",tf.backend().blockSize) console.log("First Use is ",tf.backend().firstUse)
Producción:
Referencia: https://js.tensorflow.org/api/latest/#Backends