TensorFlow es una biblioteca Python de código abierto diseñada por Google para desarrollar modelos de aprendizaje automático y redes neuronales de aprendizaje profundo.
from_string se utiliza para generar DeviceSpec a partir de una string.
Sintaxis: tensorflow.DeviceSpec.from_string(spec)
Parámetros:
- especificación: es una string de la forma /trabajo:/réplica:/tarea:/dispositivo:CPU: o /trabajo:/réplica:/tarea:/dispositivo:GPU con todas las entradas opcionales.
Devoluciones: Devuelve un objeto DeviceSpec generado por la string.
Ejemplo 1:
Python3
# Importing the library import tensorflow as tf # Formatting the string spec = '/job:gfg / replica:1 / task:2' # Initializing Device Specification device_spec = tf.DeviceSpec.from_string(spec) # Printing the DeviceSpec object print('Device Spec: ', device_spec)
Producción:
Device Spec: <tensorflow.python.framework.device_spec.DeviceSpecV2 object at 0x7fadb9428168>
Ejemplo 2:
Python3
# Importing the library import tensorflow as tf # Formatting the string spec = '/job:gfg / replica:2 / task:3' # Initializing Device Specification device_spec = tf.DeviceSpec.from_string(spec) # Printing the DeviceSpec object print('Device Spec: ', device_spec)
Producción:
Device Spec: <tensorflow.python.framework.device_spec.DeviceSpecV2 object at 0x7fadb9428228>
Publicación traducida automáticamente
Artículo escrito por aman neekhara y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA