. 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.getBackend() se usa para devolver el nombre del backend actual.
Sintaxis:
tf.getBackend()
Parámetros:
- No toma parámetros
Valor devuelto: Devuelve un valor de string.
Ejemplo 1:
Javascript
// Setting the backend tf.setBackend("cpu") // Getting the backend using getBackend method console.log(tf.getBackend())
Producción:
cpu
Ejemplo 2: en este ejemplo, configuramos el backend en la string «cpu» y luego lo eliminamos y luego lo configuramos en la string «webgl».
Javascript
// Setting the backend tf.setBackend("cpu") tf.removeBackend('cpu') console.log(tf.getBackend()) tf.setBackend("webgl") // Getting the backend using getBackend method console.log(tf.getBackend())
Producción:
null webgl
Referencia: https://js.tensorflow.org/api/latest/#getBackend