Predicting Crypto Currencies Values With Ml
Project: ML for Crypto-currencies
On November 2021 G-Research made a competition for forecasting crypto currencie prices, which is a hot-topic for the last five years. We will do some attempts to show our skills in Machine Learning, and see what can we do for predicting, for example, future Ethereum prices
Download and data preparation for training
import os
from zipfile import ZipFile
from urllib.request import urlretrieve
import opendatasets as od
database_url="https://www.kaggle.com/c/g-research-crypto-forecasting"
od.download(database_url)
Skipping, found downloaded files in "./g-research-crypto-forecasting" (use force=True to force download)
data_dir='g-research-crypto-forecasting'
Carlos Emilio Camacho6 months ago