反轉可變長度切片。 (不推薦使用的參數)(不推薦使用的參數)
用法
tf.compat.v1.reverse_sequence(
input, seq_lengths, seq_axis=None, batch_axis=None, name=None, seq_dim=None,
batch_dim=None
)
參數
-
input
一個Tensor
。要反轉的輸入。 -
seq_lengths
一個Tensor
。必須是以下類型之一:int32
,int64
。長度為input.dims(batch_axis)
和max(seq_lengths) <= input.dims(seq_axis)
的一維 -
seq_axis
一個int
。部分反轉的維度。 -
batch_axis
可選的int
。默認為0
。執行衝銷的維度。 -
name
操作的名稱(可選)。
返回
- 張量。具有與輸入相同的類型。
警告:不推薦使用某些參數:(seq_dim)
。它們將在未來的版本中被刪除。更新說明:seq_dim 已棄用,請改用seq_axis
警告:不推薦使用某些參數:(batch_dim)
。它們將在未來的版本中被刪除。更新說明:batch_dim 已棄用,請改用batch_axis
此操作首先沿維度 batch_axis
切片 input
,並且對於每個切片 i
,沿維度 seq_axis
反轉第一個 seq_lengths[i]
元素。
seq_lengths
的元素必須服從 seq_lengths[i] <=
input.dims[seq_axis]
,並且 seq_lengths
必須是長度為 input.dims[batch_axis]
的向量。
沿維度 batch_axis
的輸出切片 i
然後由輸入切片 i
給出,沿維度 seq_axis
的第一個 seq_lengths[i]
切片反轉。
示例用法:
seq_lengths = [7, 2, 3, 5]
input = [[1, 2, 3, 4, 5, 0, 0, 0], [1, 2, 0, 0, 0, 0, 0, 0],
[1, 2, 3, 4, 0, 0, 0, 0], [1, 2, 3, 4, 5, 6, 7, 8]]
output = tf.reverse_sequence(input, seq_lengths, seq_axis=1, batch_axis=0)
output
<tf.Tensor:shape=(4, 8), dtype=int32, numpy=
array([[0, 0, 5, 4, 3, 2, 1, 0],
[2, 1, 0, 0, 0, 0, 0, 0],
[3, 2, 1, 4, 0, 0, 0, 0],
[5, 4, 3, 2, 1, 6, 7, 8]], dtype=int32)>
相關用法
- Python tf.compat.v1.reduce_sum用法及代碼示例
- Python tf.compat.v1.reduce_any用法及代碼示例
- Python tf.compat.v1.reduce_max用法及代碼示例
- Python tf.compat.v1.reduce_min用法及代碼示例
- Python tf.compat.v1.reduce_all用法及代碼示例
- Python tf.compat.v1.reduce_join用法及代碼示例
- Python tf.compat.v1.reduce_prod用法及代碼示例
- Python tf.compat.v1.reduce_logsumexp用法及代碼示例
- Python tf.compat.v1.reduce_mean用法及代碼示例
- Python tf.compat.v1.random.stateless_multinomial用法及代碼示例
- Python tf.compat.v1.random_uniform_initializer.from_config用法及代碼示例
- Python tf.compat.v1.ragged.constant_value用法及代碼示例
- Python tf.compat.v1.random_normal_initializer用法及代碼示例
- Python tf.compat.v1.random_normal_initializer.from_config用法及代碼示例
- Python tf.compat.v1.random_poisson用法及代碼示例
- Python tf.compat.v1.random_uniform_initializer用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.compat.v1.reverse_sequence。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。