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

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 =..
Deep Learning Study/Udemy Deep Learning A-Z
2023. 11. 5. 16:13