gpt4 book ai didi

Tensorflow:从具有可变序列长度的双向 rnn 获取输出

转载 作者:行者123 更新时间:2023-12-04 23:45:32 25 4
gpt4 key购买 nike

我将 tf.nn.bidirectional_rnnsequence_length 参数一起用于可变输入大小,但我无法弄清楚如何获得每个的最终输出小批量样本:

output, _, _ = tf.nn.bidirectional_rnn(forward1,backward1,input,dtype=tf.float32,sequence_length=input_lengths)

现在,如果我有恒定的序列长度,我会简单地使用 output[-1] 并获得最终输出。在我的例子中,我有可变序列(它们的长度是已知的)。另外,这个输出是前向和后向 LSTM 的输出吗?

谢谢。

最佳答案

这个问题看源码就可以回答rnn.py .

对于具有动态长度的序列,源代码说:

If the sequence_length vector is provided, dynamic calculation is performed. This method of calculation does not compute the RNN steps past the maximum sequence length of the minibatch (thus saving computational time), and properly propagates the state at an example's sequence length to the final state output.

因此,为了获得实际的最后输出,您应该对结果输出进行切片。

对于bidirectional_rnn,源码说:

A tuple (outputs, output_state_fw, output_state_bw) where: outputs is a length T list of outputs (one for each input), which are depth-concatenated forward and backward outputs. output_state_fw is the final state of the forward rnn. output_state_bw is the final state of the backward rnn.

因此,输出是元组而不是张量。如果您愿意,可以将此元组连接成一个向量。

关于Tensorflow:从具有可变序列长度的双向 rnn 获取输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39821069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com