max_depth 限制树的最大深度,超过设定深度的树枝全部剪掉。
准备数据from sklearn import tree
from sklearn.datasets import load_wine
from sklearn.mo
2021-02-15