Ever ended up with this issue ? python:alpine is the best Docker base image to build containers for light-weight Python based applications. Most of the python applications like Django or Flask which has Postgres database backend will be using psycopg2 as a driver for making db connections. This module works well when used on plain […]
Python
Predicting Bitcoin Price using LSTM
Predicting time series quantities has been an interesting domain in predictive analytics. Many traditional Quantitative forecasting methods like ARIMA, SES, or SMA are time-tested and widely used for things like predicting stock prices. With the amount of data we have around, neural networks make a good candidate for time-series forecasting that can outshine traditional statistical methods. Over the past few […]