Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)