Skip to content

Instantly share code, notes, and snippets.

@y8
Created October 6, 2016 11:04
Show Gist options
  • Save y8/3a9170e841b45c06d10ab763bd2bde8c to your computer and use it in GitHub Desktop.
Save y8/3a9170e841b45c06d10ab763bd2bde8c to your computer and use it in GitHub Desktop.
@a = tanh(@i0 * @a_w0)
@b = tanh(@i1 * @b_w0)
@c = tanh(@a * @c_w0 + @b * @c_w1)
@d = tanh(@a * @d_w0 + @b * @d_w1)
@e = tanh(@c * @e_w0 + @d * @e_w1)
# vs
@e = tanh((tanh((tanh(@i0 * @a_w0) * @c_w0) + (tanh(@i1 * @b_w0) * @c_w1)) * @e_w0) + (tanh((tanh(@i0 * @a_w0) * @d_w0) + (tanh(@i1 * @b_w0) * @d_w1)) * @e_w1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment