用法:
mxnet.symbol.op.SequenceReverse(data=None, sequence_length=None, use_sequence_length=_Null, axis=_Null, name=None, attr=None, out=None, **kwargs)
- data:(
Symbol
) - [max_sequence_length, batch_size, other dims] 形式的 n 維輸入數組,其中 n>2 - sequence_length:(
Symbol
) - [batch_size] 形式的序列長度向量 - use_sequence_length:(
boolean
,
optional
,
default=0
) - 如果設置為 true,則該層接受一個額外的輸入參數sequence_length
指定可變長度序列 - axis:(
int
,
optional
,
default='0'
) - 序列軸。當前僅支持 0。 - name:(
string
,
optional.
) - 結果符號的名稱。
- data:(
結果符號。
參數:
返回:
返回類型:
反轉每個序列的元素。
此函數采用 [max_sequence_length, batch_size, other_feature_dims] 形式的 n 維輸入數組,並返回相同形狀的數組。
參數
sequence_length
用於處理可變長度序列。sequence_length
應該是維度為 [batch_size] 的正整數的輸入數組。要使用此參數,請將use_sequence_length
設置為True
,否則將假定批處理中的每個示例都具有最大序列長度。例子:
x = [[[ 1., 2., 3.], [ 4., 5., 6.]], [[ 7., 8., 9.], [ 10., 11., 12.]], [[ 13., 14., 15.], [ 16., 17., 18.]]] // Batch 1 B1 = [[ 1., 2., 3.], [ 7., 8., 9.], [ 13., 14., 15.]] // Batch 2 B2 = [[ 4., 5., 6.], [ 10., 11., 12.], [ 16., 17., 18.]] // returns reverse sequence when sequence_length parameter is not used SequenceReverse(x) = [[[ 13., 14., 15.], [ 16., 17., 18.]], [[ 7., 8., 9.], [ 10., 11., 12.]], [[ 1., 2., 3.], [ 4., 5., 6.]]] // sequence_length [2,2] means 2 rows of // both batch B1 and B2 will be reversed. SequenceReverse(x, sequence_length=[2,2], use_sequence_length=True) = [[[ 7., 8., 9.], [ 10., 11., 12.]], [[ 1., 2., 3.], [ 4., 5., 6.]], [[ 13., 14., 15.], [ 16., 17., 18.]]] // sequence_length [2,3] means 2 of batch B2 and 3 of batch B3 // will be reversed. SequenceReverse(x, sequence_length=[2,3], use_sequence_length=True) = [[[ 7., 8., 9.], [ 16., 17., 18.]], [[ 1., 2., 3.], [ 10., 11., 12.]], [[ 13., 14, 15.], [ 4., 5., 6.]]]
相關用法
- Python mxnet.symbol.op.SequenceLast用法及代碼示例
- Python mxnet.symbol.op.SequenceMask用法及代碼示例
- Python mxnet.symbol.op.SliceChannel用法及代碼示例
- Python mxnet.symbol.op.SoftmaxActivation用法及代碼示例
- Python mxnet.symbol.op.SwapAxis用法及代碼示例
- Python mxnet.symbol.op.broadcast_logical_xor用法及代碼示例
- Python mxnet.symbol.op.log_softmax用法及代碼示例
- Python mxnet.symbol.op.linalg_trmm用法及代碼示例
- Python mxnet.symbol.op.broadcast_plus用法及代碼示例
- Python mxnet.symbol.op.broadcast_mul用法及代碼示例
- Python mxnet.symbol.op.reciprocal用法及代碼示例
- Python mxnet.symbol.op.argmax用法及代碼示例
- Python mxnet.symbol.op.linalg_syrk用法及代碼示例
- Python mxnet.symbol.op.erf用法及代碼示例
- Python mxnet.symbol.op.broadcast_minus用法及代碼示例
- Python mxnet.symbol.op.random_pdf_negative_binomial用法及代碼示例
- Python mxnet.symbol.op.linalg_gelqf用法及代碼示例
- Python mxnet.symbol.op.round用法及代碼示例
- Python mxnet.symbol.op.sample_normal用法及代碼示例
- Python mxnet.symbol.op.swapaxes用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.symbol.op.SequenceReverse。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。