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

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

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
```