Live data from Hacker News

Exploring LSTMs

blog.echen.me

1–10 of 48 posts

Re: Exploring LSTMs

#3
Is 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

#4
Really great work on visualizing neurons!

Is 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

#5

Is 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)

From Karpathy's blog post : http://cs.stanford.edu/people/karpathy/viscode.zip

Re: Exploring LSTMs

#8
post #6

LSTM is "Long Short Term Memory," since the tutorial never mentions what it stands for. https://en.wikipedia.org/wiki/Long_short-term_memory

It's defined few sections in, but yes, your larger point stands.

Re: Exploring LSTMs

#9
post #7

Can 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.

Re: Exploring LSTMs

#10
post #9
post #7

Can 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.

This is a surprisingly accurate tl;dr for someone who just learnt what LSTMs are.
Post reply on HN