tensorflow 框架学些(二) 之 Constant Op

本文详细介绍了TensorFlow中的常量操作,包括zeros、ones、fill和constant,以及序列生成函数linspace和range,最后讲解了随机张量的生成,如random_normal、truncated_normal、random_uniform和random_shuffle。
摘要由CSDN通过智能技术生成

本文介绍tf的constant op: 常量,序列,随机序列
参考官方 http://www.tensorfly.cn/tfdoc/api_docs/python/constant_op.html

1 constants —常量

1.1 zeros

tf.zeros(shape, dtype=tf.float32, name=None)

创建元素为0的张量:

 tf.zeros([2, 3], int32) ==> [[0, 0, 0], [0, 0, 0]]

1.2 zeros_like

tf.zeros_like(tensor, dtype=None, name=None)

依据一个tensor的shape创建一个新tensor:

# 'tensor_instance' is [[1, 2, 3], [4, 5, 6]]
tf.zeros_like(tensor_instance) ==> [[0, 0, 0], [0, 0, 0]]

1.3 ones

tf.ones(shape, dtype=tf.float32, name=None)

举例:

tf.ones([2
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值