Created
December 3, 2019 13:53
-
-
Save caiobvilar/e701f0f00489acd7d7761b673a43e3ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from worldtradingdata import WorldTradingData | |
import pandas as pd | |
import io | |
from sklearn.model_selection import train_test_split | |
from sklearn.metrics import mean_squared_error | |
import xgboost as xgb | |
import matplotlib.pyplot as plt | |
from sklearn.preprocessing import StandardScaler | |
from sklearn.pipeline import Pipeline | |
from sklearn.model_selection import cross_val_score,RandomizedSearchCV | |
token = 'secret_token' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment