1) 강의 수강
2) 과제
3) 피어 세션
RNN 기본 구조
- Unrolled version
- rolled version
RNN의 hidden state를 계산하는 방법
- : 지난 hidden state 벡터
- : t일 때 input 벡터
- : 새로운 hidden state 벡터
- : 로 이루어진 RNN 함수
- : t일 때 output 벡터
중요한 점은 매번 같은 함수와 같은 파라미터 셋이 사용된다는 점이다.
->
Types of RNNs
- One-to-one: Standard Neural Networks
- One-to-many: Image Captioning
- Many-to-one: Sentiment Classification
- Many-to-many (Sequence-to-sequence): Machine Translation
- Many-to-many (Sequence-to-sequence): Video classification on frame level (해당 씬이 전쟁인지? 예측)
Example of training sequence "hello"
- Vocabulary: [h, e, l, o]
- At test-time, sample characters one at a time, feed back to model







구조
- i: input gate, Whether to write to cell
- f: Forget gate, Whether to erase cell
- o: Output gate, How much to reveal cell
- g: Gate gate, How much to write to cell

특징
1.
2. 2개 게이트 1개 게이트 (계산, 메모리 )
