Home > Net >  can't understand formular with 'updown e' in LSTM
can't understand formular with 'updown e' in LSTM

Time:02-23

I come cross with formular contains such symbol a lot when I was reading articls about machine learning, it is a 'updown e' does anyone know what does it mean?

this one I got is from a artical about LSTM

I assume it is someting like delta? I even dont know how to pronouse it, forgive me this might be a very stupid question.

Here is one equation like: enter image description here

Here is the full artical which explains it:

enter image description here

CodePudding user response:

Oh, it is the symbol for a partial derivative if you have a function of with multiple variables, e.g. E=f(ω1,ω2,...). Check https://en.wikipedia.org/wiki/Partial_derivative#:~:text=In mathematics, a partial derivative,vector calculus and differential geometry.

  • Related