aboutsummaryrefslogtreecommitdiff
path: root/microposts
diff options
context:
space:
mode:
authorYuchen Pei <me@ypei.me>2018-05-11 12:31:36 +0200
committerYuchen Pei <me@ypei.me>2018-05-11 12:31:36 +0200
commitac9007d3cf2a3eabb1c34a6e7f6155372b2bde09 (patch)
treecd3de623e200b272c6429df91550867676583339 /microposts
parentaaf6accc83e32a57bf0839928e60c5986087d5da (diff)
added an mpost.
Diffstat (limited to 'microposts')
-rw-r--r--microposts/rnn-fsm.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/microposts/rnn-fsm.md b/microposts/rnn-fsm.md
new file mode 100644
index 0000000..38ff333
--- /dev/null
+++ b/microposts/rnn-fsm.md
@@ -0,0 +1,14 @@
+---
+date: 2018-05-11
+---
+### Some notes on RNN, FSM / FA, TM and UTM
+
+Related to a previous micropost.
+
+[The slides from Toronto](http://www.cs.toronto.edu/~rgrosse/csc321/lec9.pdf) is a nice introduction to RNN (recurrent neural network) from a computational point of view. It states the relation between RNN and FSM (finite state machine, a.k.a. finite automata abbr. FA) with a toy example computing the parity of a binary string.
+
+[Goodfellow et. al.'s book](http://www.deeplearningbook.org/contents/rnn.html) (see page 372 and 374) goes one step further, stating that RNN with a hidden-to-hidden layer can simulate Turing machines, and not only that, but also the *universal* Turing machine abbr. UTM (the book referenced [Siegelmann-Sontag](https://www.sciencedirect.com/science/article/pii/S0022000085710136)), a property not shared by the weaker network where the hidden-to-hidden layer is replaced by an output-to-hidden layer (page 376).
+
+By the way, the RNN with a hidden-to-hidden layer has the same architecture as the so-called linear dynamical system mentioned in [Hinton's video](https://www.coursera.org/learn/neural-networks/lecture/Fpa7y/modeling-sequences-a-brief-overview).
+
+From what I have learned, the universality of RNN and feedforward networks are therefore due to different arguments, the former coming from Turing machines and the latter from an analytical view of approximation by step functions.