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.
device_index se utiliza para obtener el índice del dispositivo de DeviceSpec.
Sintaxis: tensorflow.DeviceSpec.device_index
Devoluciones: Devuelve el índice del dispositivo.
Ejemplo 1:
Python3
# Importing the library import tensorflow as tf # Initializing Device Specification device_spec = tf.DeviceSpec(job ="gfg", device_type ="CPU", device_index = 0) # Printing the DeviceSpec object print('Device Spec: ', device_spec) # Getting device index device_index = device_spec.device_index # Printing the result print('Device Index: ', device_index)
Producción:
Device Spec: <tensorflow.python.framework.device_spec.DeviceSpecV2 object at 0x7fe5ba96aee8> Device Index: 0
Ejemplo 2:
Python3
# Importing the library import tensorflow as tf # Initializing Device Specification device_spec = tf.DeviceSpec(job ="gfg", device_type ="CPU", device_index = 1) # Printing the DeviceSpec object print('Device Spec: ', device_spec) # Getting device index device_index = device_spec.device_index # Printing the result print('Device Index: ', device_index)
Producción:
Device Spec: <tensorflow.python.framework.device_spec.DeviceSpecV2 object at 0x7fe5ba97f048> Device Index: 1
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