108、TensorFlow 类型转换

# 除了维度之外Tensorflow也有数据类型
# 请参考 tf.DataType
# 一个张量只能有一个类型
# 可以使用tf.cast,将一个张量从一个数据类型转换到另一个数据类型
# 下面代码显示的就是将一个张量的类型从integer类型转换为float类型
import tensorflow as tf
float_tensor = tf.cast(tf.constant([1, 2, 3]), dtype=tf.float32)
# 当从一个python对象来创建张量的时候可以手动指定数据类型
# 如果你不手动指定数据类型
# TensorFlow 自动地将 Python integer 类型转换为tf.int32 并且将 python的 float类型转换为 tf.float32
# 另外TensorFlow使用相同的规则将numpy对象转换为Array
init = tf.global_variables_initializer()
sess = tf.Session()
print(sess.run(float_tensor))

下面是类型转换的结果:

2018-02-16 21:44:46.674417: I C:\tf_jenkins\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
[ 1.  2.  3.]

 

转载于:https://www.cnblogs.com/weizhen/p/8450572.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值