Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bajcmartinez/bitcoin-predict
Predicting the price of Bitcoin, intro to LSTM
https://github.com/bajcmartinez/bitcoin-predict
ai artificial-intelligence deep-learning forecasting python
Last synced: 18 days ago
JSON representation
Predicting the price of Bitcoin, intro to LSTM
- Host: GitHub
- URL: https://github.com/bajcmartinez/bitcoin-predict
- Owner: bajcmartinez
- License: mit
- Created: 2020-06-04T16:00:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T21:37:19.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T00:58:00.950Z (3 months ago)
- Topics: ai, artificial-intelligence, deep-learning, forecasting, python
- Language: Jupyter Notebook
- Homepage: https://livecodestream.dev/post/2020-06-04-predicting-the-price-of-bitcoin-intro-to-lstm/
- Size: 762 KB
- Stars: 12
- Watchers: 3
- Forks: 9
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Predicting the price of Bitcoin, intro to LSTM
This project was built as part of the article "Predicting the price of Bitcoin, intro to LSTM", which was published [here](https://livecodestream.dev/post/2020-06-04-predicting-the-price-of-bitcoin-intro-to-lstm/).
Today we are going to discuss how to predict the price of Bitcoin by analyzing the pricing information for the last 6 years. Note that we already have established that our analysis will only focus on the pricing information, leaving aside any factor which may impact the price of Bitcoin, like for example, news, which can play a very important rule. For this reason, I say that this article and related project are only intended for educational purposes and should not be used in production. It is an overly simplistic model that will help us explain and understand time series forecasting using Python and Recurrent Neural Networks (RNNs), more precisely we will build an LSTM (Long-Short Term Memory) model......
## Set Up
1. Check out the code
2. Install dependencies
```shell script
pipenv install
```3. Start jupyter notebook `analysis.ipynb`