indrnn:独立循环神经网络的TensorFlow实现

时间:2024-02-27 02:31:42
【文件属性】:

文件名称:indrnn:独立循环神经网络的TensorFlow实现

文件大小:319KB

文件格式:ZIP

更新时间:2024-02-27 02:31:42

tensorflow rnn paper-implementations indrnn TensorflowPython

独立递归神经网络 简单TensorFlow实现 Shuai Li等人 。 作者在Theano和Lasagne中的原始实现可在找到。 概要 在IndRNN中,循环层中的神经元彼此独立。 基本的RNN用h = act(W * input + U * state + b)计算隐藏状态h 。 IndRNN使用逐元素向量乘法u * state这意味着每个神经元都具有与其最后一个隐藏状态相关的单个递归权重。 IndRNN 可以有效地与ReLU激活功能一起使用,从而更容易堆叠多个递归层而不会使梯度饱和 允许更好的解释性,因为同一层中的神经元彼此独立 通过调节每个神经元的周期性体重来防止梯度消失和爆炸 用


【文件预览】:
indrnn-master
----.gitignore(2KB)
----requirements.txt(16B)
----.travis.yml(281B)
----LICENSE(11KB)
----ind_rnn_cell_test.py(2KB)
----examples()
--------addition_rnn.py(3KB)
--------sequential_mnist.py(12KB)
----README.md(3KB)
----ind_rnn_cell.py(6KB)
----img()
--------addition()
--------sequential_mnist()

网友评论