从张量列表生成特征交叉,并将其作为
用法
tf.raw_ops.RaggedCross(
ragged_values, ragged_row_splits, sparse_indices, sparse_values, sparse_shape,
dense_inputs, input_order, hashed_output, num_buckets, hash_key,
out_values_type, out_row_splits_type, name=None
)
不规则张量。有关详细信息,请参阅tf.ragged.cross
。
Args:ragged_values:列表Tensor
对象类型来自:int64
,string
.每个 RaggedTensor 输入的值张量。 ragged_row_splits:列表Tensor
对象类型来自:int32
,int64
.每个 RaggedTensor 输入的 row_splits 张量。 sparse_indices:列表Tensor
具有类型的对象int64
.每个 SparseTensor 输入的索引张量。 sparse_values:列表Tensor
对象类型来自:int64
,string
.每个 SparseTensor 输入的值张量。 sparse_shape:一个长度相同的列表sparse_indices
的Tensor
具有类型的对象int64
.每个 SparseTensor 输入的 dense_shape 张量。 dense_inputs:列表Tensor
对象类型来自:int64
,string
. tf.Tensor 输入。 input_order:Astring
.指定每个输入的张量类型的字符串。这i
此字符串中的第一个字符指定i
th 输入,并且是以下之一:'R'(参差不齐)、'D'(密集)或'S'(稀疏)。此属性用于确保交叉值按照调用 tf.ragged.cross 的输入顺序组合。 hashed_output:Abool
. num_buckets:一个int
那是>= 0
. hash_key:一个int
. out_values_type:Atf.dtypes.DType从:tf.int64, tf.string
. out_row_splits_type:Atf.dtypes.DType从:tf.int32, tf.int64
. name:操作的名称(可选)。
返回:Tensor
对象的元组(output_values、output_row_splits)。
output_values:A `Tensor` of type `out_values_type`.
output_row_splits:A `Tensor` of type `out_row_splits_type`.
相关用法
- Python tf.raw_ops.RaggedGather用法及代码示例
- Python tf.raw_ops.RaggedRange用法及代码示例
- Python tf.raw_ops.Range用法及代码示例
- Python tf.raw_ops.RandomShuffle用法及代码示例
- Python tf.raw_ops.Rank用法及代码示例
- Python tf.raw_ops.ResourceScatterNdSub用法及代码示例
- Python tf.raw_ops.ReadVariableXlaSplitND用法及代码示例
- Python tf.raw_ops.ResourceScatterMul用法及代码示例
- Python tf.raw_ops.ReduceJoin用法及代码示例
- Python tf.raw_ops.RGBToHSV用法及代码示例
- Python tf.raw_ops.ResourceScatterAdd用法及代码示例
- Python tf.raw_ops.ResourceScatterMax用法及代码示例
- Python tf.raw_ops.ResourceScatterMin用法及代码示例
- Python tf.raw_ops.Real用法及代码示例
- Python tf.raw_ops.Rint用法及代码示例
- Python tf.raw_ops.Relu用法及代码示例
- Python tf.raw_ops.ReverseV2用法及代码示例
- Python tf.raw_ops.ResourceGather用法及代码示例
- Python tf.raw_ops.Reverse用法及代码示例
- Python tf.raw_ops.Reshape用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.raw_ops.RaggedCross。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。