- Neural Networks with Keras Cookbook
- V Kishore Ayyadevara
- 124字
- 2021-07-02 12:46:34
Getting ready
To predict a stock price, we will perform the following steps:
- Order the dataset from the oldest to the newest date.
- Take the first five stock prices as input and the sixth stock price as output.
- Slide it across so that in the next data point the second to the sixth data points are input and the seventh data point is the output, and so on, till we reach the final data point.
- Given that it is a continuous number that we are predicting, the loss function this time shall be the mean squared error value.
Additionally, we will also try out the scenario where we integrate the text data into the historic numeric data to predict the next day's stock price.
推薦閱讀
- Intel Galileo Essentials
- Kubernetes實戰
- C語言程序設計(第3版)
- PaaS程序設計
- Python機器學習編程與實戰
- JavaScript應用開發實踐指南
- 動手打造深度學習框架
- Python 3 Object:oriented Programming(Second Edition)
- Hacking Android
- Application Development with Swift
- Learning C++ by Creating Games with UE4
- MySQL數據庫應用實戰教程(慕課版)
- 趣學數據結構
- 機器學習開發者指南
- Learning Java by Building Android Games