赞
踩
print(__doc__)
import matplotlib.pyplot as pltfrom sklearn.svm import SVCfrom sklearn.ensemble import RandomForestClassifierfrom sklearn.metrics import plot_roc_curvefrom sklearn.datasets import load_winefrom sklearn.model_selection import train_test_splitX, y = load_wine(return_X_y=True)y = y == 2X_train, X_test, y
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。