2021
07-17
07-17
tensorflow中的数据类型dtype用法说明
Tensorflow中,主要有以下几种数据类型(dtype),在旧版本中,不用加tf也能使用。有符号整型tf.int8:8位整数。tf.int16:16位整数。tf.int32:32位整数。tf.int64:64位整数。无符号整型tf.uint8:8位无符号整数。tf.uint16:16位无符号整数。浮点型tf.float16:16位浮点数。tf.float32:32位浮点数。tf.float64:64位浮点数。tf.double:等同于tf.float64。字符串型tf.string:字符串。布尔型tf.bool:布尔型。复数型tf.complex...
继续阅读 >