Exploring LSTMs
blog.echen.me
Exploring LSTMs
1–10 of 48 posts
Re: Exploring LSTMs
#2Re: Exploring LSTMs
#3Re: Exploring LSTMs
#4Is anyone working with LSTMs in a production setting? Any tips on what are the biggest challenges?
Jeremy Howard said in fast.ai course that in the applied setting, simpler GRUs work much better and has replaced LSTMs. Comments about this?
Re: Exploring LSTMs
#5Is there code for the coloring of neurons per-character as in the post? I've seen that type of visualization on similar posts and am curious if there is a library for it. (the original char-rnn post [ http://karpathy.github.io/2015/05/21/rnn-effectiveness/ ] indicates that it is custom Code/CSS/HTML)
Re: Exploring LSTMs
#6Re: Exploring LSTMs
#7Re: Exploring LSTMs
#8LSTM is "Long Short Term Memory," since the tutorial never mentions what it stands for. https://en.wikipedia.org/wiki/Long_short-term_memory
Re: Exploring LSTMs
#9Can someone provide a tl;dr ?
Disclaimer: I just learned what an LSTM was. But it's a good article.
Re: Exploring LSTMs
#10Can someone provide a tl;dr ?
Neural nets that update over time need a way to know what to keep and what to forget from last time. So let's learn what to keep and forget... by using more neural nets. Disclaimer: I just learned what an LSTM was. But it's a good article.