Función Tensorflow.js tf.backend()

. 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

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 *