摘要:
数据归一化 import numpy as np import pandas as pd from sklearn.preprocessing import MinMaxScaler data = np.arange(36) data = data.reshape(6,6) data = pd.Da 阅读全文
摘要:
随机森林在乳腺癌数据上的调参 导入需要的库 from sklearn.datasets import load_breast_cancer from sklearn.model_selection import GridSearchCV, cross_val_score from sklearn.e 阅读全文
摘要:
import pandas as pd import numpy as np import matplotlib.pyplot as plt from sklearn.ensemble import RandomForestRegressor from sklearn.impute import S 阅读全文