Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我们有顺序输入时应该使用什么类型的神经网络。假设我们想要表达一些文本,这些文本应该根据单词的顺序给出输出。为此,输出应取决于输入的先前状态。
递归神经网络是您正在寻找的——至少在一般情况下,序列很长,或者并非所有序列都具有相同的长度。
这是一个例子,这里是一个 Python 实现,这里是一些参考论文。