用法:
mxnet.symbol.op.SequenceLast(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_feature_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 和 1 的值。 - name:(
string
,
optional.
) - 結果符號的名稱。
- data:(
結果符號。
參數:
返回:
返回類型:
獲取序列的最後一個元素。
此函數采用 [max_sequence_length, batch_size, other_feature_dims] 形式的 n 維輸入數組,並返回 [batch_size, other_feature_dims] 形式的 (n-1) 維數組。
參數
sequence_length
用於處理可變長度序列。sequence_length
應該是維度為 [batch_size] 的正整數的輸入數組。要使用此參數,請將use_sequence_length
設置為True
,否則將假定批處理中的每個示例都具有最大序列長度。注意:
或者,您也可以使用
take
運算符。例子:
x = [[[ 1., 2., 3.], [ 4., 5., 6.], [ 7., 8., 9.]], [[ 10., 11., 12.], [ 13., 14., 15.], [ 16., 17., 18.]], [[ 19., 20., 21.], [ 22., 23., 24.], [ 25., 26., 27.]]] // returns last sequence when sequence_length parameter is not used SequenceLast(x) = [[ 19., 20., 21.], [ 22., 23., 24.], [ 25., 26., 27.]] // sequence_length is used SequenceLast(x, sequence_length=[1,1,1], use_sequence_length=True) = [[ 1., 2., 3.], [ 4., 5., 6.], [ 7., 8., 9.]] // sequence_length is used SequenceLast(x, sequence_length=[1,2,3], use_sequence_length=True) = [[ 1., 2., 3.], [ 13., 14., 15.], [ 25., 26., 27.]]
相關用法
- Python mxnet.symbol.op.SequenceReverse用法及代碼示例
- 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.SequenceLast。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。