Skip to content

Instantly share code, notes, and snippets.

@BinarySpoon
Created November 3, 2020 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BinarySpoon/2404903d4b573af3be5732225dafea4a to your computer and use it in GitHub Desktop.
Save BinarySpoon/2404903d4b573af3be5732225dafea4a to your computer and use it in GitHub Desktop.
# libraries used -->
import pandas as pd
import numpy as np
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import StandardScaler
from sklearn.preprocessing import MinMaxScaler
from sklearn.model_selection import train_test_split
from sklearn.model_selection import KFold
# models -->
from sklearn import linear_model
from sklearn.svm import SVR
from sklearn.model_selection import GridSearchCV
from sklearn.tree import DecisionTreeRegressor
from sklearn.ensemble import GradientBoostingRegressor
from sklearn.preprocessing import PolynomialFeatures
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment