tf.to_int64
- 2019 年 10 月 28 日
- 筆記
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_36670529/article/details/102711104
Casts a tensor to type int64
. (deprecated)
Aliases:
tf.to_int64( x, name='ToInt64' )
Warning: THIS FUNCTION IS DEPRECATED. It will be removed in a future version. Instructions for updating: Use tf.cast
instead.
Args:
x
: ATensor
orSparseTensor
orIndexedSlices
.name
: A name for the operation (optional).
Returns:
A Tensor
or SparseTensor
or IndexedSlices
with same shape as x
with type int64
.
Raises:
TypeError
: Ifx
cannot be cast to theint64
.