Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mehassanhmood/deep_learning-and-bitcoin
Applying LSTM model to a time series data that has categorical target values.
https://github.com/mehassanhmood/deep_learning-and-bitcoin
deep-learning keras machine-learning
Last synced: about 1 month ago
JSON representation
Applying LSTM model to a time series data that has categorical target values.
- Host: GitHub
- URL: https://github.com/mehassanhmood/deep_learning-and-bitcoin
- Owner: mehassanhmood
- Created: 2022-06-20T16:22:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-11T22:54:29.000Z (almost 2 years ago)
- Last Synced: 2024-12-05T16:18:25.921Z (about 1 month ago)
- Topics: deep-learning, keras, machine-learning
- Language: Jupyter Notebook
- Homepage:
- Size: 2.36 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Deep-Learning
1. In this project the models were to be setup to forecast prices of bitcoin by using past closing prices and sentiments as feature but seperately.
2. The standard procedure was followed which is enumerated below:
1. Importing necessary libraries and dependencies.
2. Data processing which includes the following:
1. Retrieving data.
2. Deciding features and target.
3. Scaling the data.
4. Splitting it into train and test sets.
3. Setting up the model, the summary for both models is as follows :
1. Model summary for model that uses closing prices as feature :
!['Summary'](close_summary.jpg)
2. Model summary for model that uses sentiment score as feature :
!['Summary'](fng_summary.jpg)
4. After setting up the model the next step is to train it with the hyperparameters that were set according to the instructions provided.
5. The next step is to make predictions after evaluating the eventual loss output after the last epoch.
6. Following are the comparitive results of the two models :
1. #### Model with closing prices feature:
!['Predictions'](Stock_price.jpg)
2. #### Model with sentiment score feature:
!['Predictions'](fng_pred.jpg)