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 |
Tags
- transformer
- dl
- 코테
- GPT
- 알고리즘
- Django
- 머신러닝
- Linear Regression
- LeetCode
- NLP
- ChatGPT
- Python
- prompt engineering
- BFS
- Programmers
- 기계학습
- attention
- 부스트캠프
- 일기
- gradient descent
- 프로그래머스
- machinelearning
- LLM
- rnn
- 프롬프트
- 코딩테스트
- 파이썬
- Linear Model
- Deeplearning
- deque
Archives
- Today
- Total
목록lstm (1)
크크루쿠쿠

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