Función Tensorflow.js tf.getBackend()

. 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

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *