Boosting-In-Regression / requirements.txt
PreyPatel's picture
Update requirements.txt
c9fc73c
raw
history blame
401 Bytes
streamlit
pandas
numpy
matplotlib
from sklearn.datasets import make_regression
from sklearn.model_selection import train_test_split, KFold
from sklearn.ensemble import BaggingRegressor, GradientBoostingRegressor, AdaBoostRegressor
from sklearn.linear_model import LinearRegression, Lasso, Ridge
from sklearn.svm import SVR
from sklearn.metrics import mean_squared_error
import matplotlib.pyplot as plt