Python – tensorflow.DeviceSpec.device_type 属性
TensorFlow 是由 Google 设计的开源Python库,用于开发机器学习模型和深度学习神经网络。
device_type用于获取 DeviceSpec 的设备类型。
Syntax: tensorflow.DeviceSpec.device_type
Returns: It returns the device type.
示例 1:
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 type
device_type = device_spec.device_type
# Printing the result
print('Device Type: ', device_type)
Python3
# Importing the library
import tensorflow as tf
# Initializing Device Specification
device_spec = tf.DeviceSpec(job ="gfg", device_type ="GPU", device_index = 1)
# Printing the DeviceSpec object
print('Device Spec: ', device_spec)
# Getting device type
device_type = device_spec.device_type
# Printing the result
print('Device Type: ', device_type)
输出:
Device Spec:
Device Type: CPU
示例 2:
Python3
# Importing the library
import tensorflow as tf
# Initializing Device Specification
device_spec = tf.DeviceSpec(job ="gfg", device_type ="GPU", device_index = 1)
# Printing the DeviceSpec object
print('Device Spec: ', device_spec)
# Getting device type
device_type = device_spec.device_type
# Printing the result
print('Device Type: ', device_type)
输出:
Device Spec:
Device Type: GPU