当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.raw_ops.DeserializeManySparse用法及代码示例


从序列化的小批量中反序列化并连接 SparseTensors

用法

tf.raw_ops.DeserializeManySparse(
    serialized_sparse, dtype, name=None
)

参数

  • serialized_sparse Tensor 类型为 string 。 2-D,N 序列化 SparseTensor 对象。必须有 3 列。
  • dtype 一个tf.DType。序列化的SparseTensor 对象的dtype
  • name 操作的名称(可选)。

返回

  • Tensor 对象的元组(sparse_indices、sparse_values、sparse_shape)。
  • sparse_indices Tensor 类型为 int64
  • sparse_values Tensor 类型为 dtype
  • sparse_shape Tensor 类型为 int64

输入 serialized_sparse 必须是形状为 [N x 3] 的字符串矩阵,其中 N 是小批量大小,行对应于 SerializeSparse 的打包输出。原始SparseTensor 对象的等级必须全部匹配。创建最终的SparseTensor 时,它的排名比传入的SparseTensor 对象的排名高一级(它们已沿新的行维度连接)。

输出SparseTensor 对象的所有维度的形状值,但第一个是输入SparseTensor 对象对应维度的形状值的最大值。它的第一个形状值是 N ,即小批量大小。

假设输入SparseTensor 对象的索引按标准字典顺序排序。如果不是这种情况,则在此步骤之后运行SparseReorder 以恢复索引顺序。

例如,如果序列化输入是一个 [2 x 3] 矩阵,表示两个原始 SparseTensor 对象:

index = [ 0]
        [10]
        [20]
values = [1, 2, 3]
shape = [50]

index = [ 2]
        [10]
values = [4, 5]
shape = [30]

那么最终反序列化的SparseTensor 将是:

index = [0  0]
        [0 10]
        [0 20]
        [1  2]
        [1 10]
values = [1, 2, 3, 4, 5]
shape = [2 50]

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.DeserializeManySparse。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。