File size: 401 Bytes
0d4247e
 
 
c9fc73c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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