https://github.com/infoslack/bitcoin-prediction
Time series forecasting in TensorFlow
https://github.com/infoslack/bitcoin-prediction
bitcoin forecasting machine-learning tensorflow time-series
Last synced: about 2 months ago
JSON representation
Time series forecasting in TensorFlow
- Host: GitHub
- URL: https://github.com/infoslack/bitcoin-prediction
- Owner: infoslack
- Created: 2021-12-09T19:15:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-09T19:16:17.000Z (over 4 years ago)
- Last Synced: 2025-01-23T04:27:08.398Z (over 1 year ago)
- Topics: bitcoin, forecasting, machine-learning, tensorflow, time-series
- Language: Jupyter Notebook
- Homepage:
- Size: 192 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Time series forecasting in TensorFlow
The goal of this notebook is to get you familiar with working with time series data and TensorFlow.
> ⚠️ This is not financial advice!
#### What is a time series problem ?
Time series problems deal with data over time.
Such as, the number of staff members in a company over 10-years, sales of computers for the past 5-years, electricity usage for the past 50-years.
#### You can create a pip virtual environment and install the requirements:
```
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
```