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.
to_string() se utiliza para obtener la representación de string de las especificaciones del objeto DeviceSpec.
Sintaxis: tensorflow.DeviceSpec.to_string()
Devoluciones: Devuelve una string.
Ejemplo 1:
Python3
# Importing the library import tensorflow as tf # Initializing Device Specification device_spec = tf.DeviceSpec(job ="gfg", replica = 5) # Printing the DeviceSpec print('Device Spec: ', device_spec.to_string())
Producción:
Device Spec: /job:gfg/replica:5
Ejemplo 2:
Python3
# Importing the library import tensorflow as tf # Initializing Device Specification device_spec = tf.DeviceSpec(job ="gfg", replica = 5, device_type = "CPU") # Printing the DeviceSpec print('Device Spec: ', device_spec.to_string())
Producción:
Device Spec: /job:gfg/replica:5/device:CPU:*
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