일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- stemming
- Generative model
- 경사하강법
- NER
- Binary classification
- BERT
- nlp
- Python
- Transfer Learning
- AI 윤리
- textmining
- tensorflow
- LSTM
- ResNet
- Attention
- Gradient Descent
- 자기조직화지도
- RNN
- Ann
- NMF
- MLOps
- Logistic Regression
- gaze estimation
- VGGNet
- 군집화
- cross domain
- SOMs
- Support Vector Machine
- Clustering
- TFX
- Today
- Total
목록RNN (3)
juooo1117

Part 4. Seq2Seq with Attention for Natural Language Understanding and Generation RNN(Recurrent Neural Networks) Given a sequence data, we recursively run the same function over time. → sequence data에 특화된 형태이다. We can process a sequence of vectors x by applying a recurrence formula at every time step → 동일한 function을 반복적으로 호출하는 형태를 가지고 있다. (시간에 따라 순차적으로 변화하는 입력이 들어온다면, 현재 시간과 이전 시간의 hidden state v..

Predict stock price of google Part 1 - Data Preprocessing Importing the training set Google_Stock_Price_Train.csv의 파일에서 .iloc을 이용해서 'Open' column(index → 1)만 가져온다. 단, simple vector가 아니라 np array를 사용해야 하므로 [:, 1] 이 아니라, [:, 1:2]를 입력해 주어야 한다. (1:2를 입력해도, 파이썬에서는 '마지막숫자-1'로 계산되기 때문에, index1만 가져오게 되기때문!) dataset_train = pd.read_csv('/content/drive/MyDrive/Google_Stock_Price_Train.csv') training_set =..
Introduction of RNNWhat is the RNN?Squashing the ANN! → 요소들은 다 있지만 단지 ANN을 아래에서 보는 거라고 생각하면 이것이 RNN이다. (차원을 추가하고, 새로운 차원에서 바라보는 것)Structure of ANNhidden layer에 해당하는 초록원을 파란색으로 바꾸고, temporal loop를 뜻하는 파란 줄을 추가해 준다. hidden layer는 output layer에 출력을 전달할 뿐만 아니라, 그 자체로도 피드백을 제공한다는 의미이다.Structure of RNN새로운 차원에서 바라보고 있지만, 결국 매우 많은 값들이 존재하고 있는 것 (→ 각각의 동그라미들은 neuron이 아니라 layer이기 때문에)neuron으로 input이 들어오고 ..