tf.cast()数据类型转换

本文介绍了TensorFlow中的tf.cast函数,用于在张量数据类型之间进行转换。通过示例展示了如何将int8类型的数据转换为float32,从而在处理图像数据时确保数值精度。在 TensorFlow 程序中,数据类型的正确转换对于计算的准确性和效率至关重要。
摘要由CSDN通过智能技术生成

tf.cast()数据类型转换函数

tf.cast()函数的作用是执行tensorflow中张量数据类型转换,将图片数据类型为int8类型的,转换为float32。

cast定义:
cast(x,dtype,name=None)

x:被转换的数据(张量)
dtype:目标数据类型
name:可选参数,定义操作名称

int32转换为float32:

import tensorflow as tf
import numpy as np

t1=tf.Variable([1,2,3,4,5])
t2=tf.cast(t1,dtype=tf.float32)

print('t1:{}'.format(t1))
print('t2:{}'.format(t2))

输出结果:
t1:<tf.Variable ‘Variable:0’ shape=(5,) dtype=int32, numpy=array([1, 2, 3, 4, 5])>
t2:[1. 2. 3. 4. 5.]



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值