Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 일기
- Python
- Linear Regression
- Programmers
- 부스트캠프
- transformer
- 머신러닝
- GPT
- BFS
- 알고리즘
- Django
- ChatGPT
- dl
- LeetCode
- Linear Model
- Deeplearning
- 코테
- attention
- machinelearning
- 코딩테스트
- 프로그래머스
- 기계학습
- LLM
- gradient descent
- 파이썬
- 프롬프트
- rnn
- deque
- prompt engineering
- NLP
Archives
- Today
- Total
목록lstm (1)
크크루쿠쿠
[NLP] LSTM and GRU
Long Short-Term Memory (LSTM) 기존 Vanilla RNN 에서 가지는 문제를 해결하기 위해 나온 model 기존 RNN 식에서 Ct 라는 변수가 추가됨 -> cell state - i : input gate sigmoid를 거치고 나옴 - f : forget gate sigmoid를 거치고 나옴 element wise로 곱해줌으로써 얼만큼만 넘겨줄지 - o: output gate sigmoid를 거치고 나옴 hidden state 만들 때 사용 - g : gate gate tanh를 거치고 나옴 input gate와 gate gate를 곱해 Ct를 구해줌 Gated Recurrent Unit (GRU) What is GRU? cell state vector와 hidden state..
DeepLearning/부스트캠프 AI Tech
2021. 9. 7. 14:36