Code Monkey home page Code Monkey logo

Comments (3)

Daynity avatar Daynity commented on May 20, 2024

And a typo in LSTM equations. The input of eq. $c_t = ...$ should be lower case vector x, not the upper case.

from nlp_overview.

Daynity avatar Daynity commented on May 20, 2024

GRU equations

$\bold{z}_t = \sigma(U_z \cdot \bold{x}t + W_z \cdot \bold{h}{t-1})$

$\bold{r}_t = \sigma(U_r \cdot \bold{x}t + W_r \cdot \bold{h}{t-1})$

$\bold{s}_t = \tanh ( U_s \cdot \bold{x}t + W_s \cdot (\bold{h}{t-1} \bigodot \bold{r}_t))$

$\bold{h}_t = (1- \bold{z}_t) \bigodot \bold{s}_t + \bold{z}t \bigodot \bold{h}{t-1}$

I added footnotes to $\bold{z}$ and $\bold{r}$ in order to make it clear that they are the results for time $t$.

And in the the third equation parameters for $\bold{x}_t$ should be $U_s$ rather than $U_z$.

from nlp_overview.

omarsar avatar omarsar commented on May 20, 2024

Hi Daynity! Thanks for the comments. Is it possible you put these changes in a PR?

from nlp_overview.

Related Issues (9)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.