-
Sequential Data
label y는 task에 따라 single일 수도, sequence일 수도 있다.
- Image Captioning
- Visual Question & Answering (VQA)
- Visual Dialog (Conversation about an Image)
- Visual Language Navigation
-
Types of Neural Networks
- One-to-one
- Many-to-one
- One-to-many
- Many-to-many
- Sequence-to-sequence
-
Internal State
At each step, the new internal state is determined by its old state as well as the input (feedback loop).
-
The same function (f) and the same set of parameters (W) are used at every time step.
ht=fw(ht−1,xt)ht=tanh(Whhht−1,Wxhxt)
- For binary classification (many-to-many)
y^t=σ(Whyht)
- For regression (many-to-many)
y^t=Whyht
-
Multi-layer RNN
-
LSTM
![](https://velog.velcdn.com/images/zzwon1212/post/5fd9e019-b5ca-4f2a-911d-ba49a57cf21f/image.png)
- cell state
- forget gate
- input gate
- output gate
-
GRU