ExtraTreesClassifier#
- class sklearn.ensemble.ExtraTreesClassifier(n_estimators=100, *, criterion='gini', max_depth=None, min_samples_split=2, min_samples_leaf=1, min_weight_fraction_leaf=0.0, max_features='sqrt', max_leaf_nodes=None, min_impurity_decrease=0.0, bootstrap=False, oob_score=False, n_jobs=None, random_state=None, verbose=0, warm_start=False, class_weight=None, ccp_alpha=0.0, max_samples=None, monotonic_cst=None)#
一个极端随机树分类器。
此类实现了一个元估计器,它在一系列子样本上拟合多个随机决策树(又名极端随机树),并使用平均法来提高预测准确性并控制过拟合。
更多信息请参阅 用户指南 。
- Parameters:
- n_estimatorsint, default=100
森林中树的数量。
Changed in version 0.22: 在0.22版本中,
n_estimators
的默认值从10改为100。- criterion{“gini”, “entropy”, “log_loss”}, default=”gini”
用于衡量分裂质量的函数。支持的标准是“gini”用于基尼不纯度和“log_loss”和“entropy”用于香农信息增益,请参阅 树的数学公式 。 注意:此参数是树特定的。
- max_depthint, default=None
树的最大深度。如果为None,则节点会一直扩展,直到所有叶子都是纯的,或者所有叶子包含的样本数少于min_samples_split。
- min_samples_splitint or float, default=2
拆分内部节点所需的最小样本数:
如果是int,则将
min_samples_split
视为最小数量。如果是float,则
min_samples_split
是一个分数,ceil(min_samples_split * n_samples)
是每个拆分的最小样本数。
Changed in version 0.18: 添加了分数的浮点值。
- min_samples_leafint or float, default=1
叶节点所需的最小样本数。在任何深度的拆分点只有在每个左分支和右分支中留下至少
min_samples_leaf
个训练样本时才会被考虑。这可能会对模型产生平滑效果,特别是在回归中。如果是int,则将
min_samples_leaf
视为最小数量。如果是float,则
min_samples_leaf
是一个分数,ceil(min_samples_leaf * n_samples)
是每个节点的最小样本数。
Changed in version 0.18: 添加了分数的浮点值。
- min_weight_fraction_leaffloat, default=0.0
叶节点所需的最小加权分数。所有输入样本的总权重(当未提供sample_weight时,样本具有相等的权重)。
- max_features{“sqrt”, “log2”, None}, int or float, default=”sqrt”
寻找最佳拆分时考虑的特征数量:
如果是int,则在每个拆分时考虑
max_features
个特征。如果是float,则
max_features
是一个分数,max(1, int(max_features * n_features_in_))
个特征在每个拆分时被考虑。如果是”sqrt”,则
max_features=sqrt(n_features)
。如果是”log2”,则
max_features=log2(n_features)
。如果是None,则
max_features=n_features
。
Changed in version 1.1:
max_features
的默认值从"auto"
改为"sqrt"
。注意:拆分的搜索不会在至少找到一个有效的节点样本分区之前停止,即使这需要有效地检查超过
max_features
个特征。- max_leaf_nodesint, default=None
以最佳优先方式生长的树的
max_leaf_nodes
。最佳节点定义为不纯度的相对减少。如果为None,则叶节点的数量不受限制。- min_impurity_decreasefloat, default=0.0
如果拆分导致的不纯度减少大于或等于此值,则节点将被拆分。
加权不纯度减少方程如下:
N_t / N * (impurity - N_t_R / N_t * right_impurity - N_t_L / N_t * left_impurity)
其中
N
是样本总数,N_t
是当前节点的样本数,N_t_L
是左子节点的样本数,N_t_R
是右子节点的样本数。N
,N_t
,N_t_R
和N_t_L
都指的是加权和,如果传递了sample_weight
。Added in version 0.19.
- bootstrapbool, default=False
构建树时是否使用bootstrap样本。如果为False,则使用整个数据集构建每棵树。
- oob_scorebool or callable, default=False
是否使用袋外样本来估计泛化分数。默认使用
accuracy_score
。提供具有签名metric(y_true, y_pred)
的可调用对象以使用自定义度量。仅在bootstrap=True
时可用。- n_jobsint, default=None
并行运行的作业数量。
fit
,predict
,decision_path
和apply
都在树之间并行化。None
意味着1,除非在joblib.parallel_backend
上下文中。-1
意味着使用所有处理器。有关更多详细信息,请参阅 术语表 。- random_stateint, RandomState instance or None, default=None
控制三种随机性来源:
构建树时使用的样本的bootstrap(如果
bootstrap=True
)在每个节点寻找最佳拆分时考虑的特征采样(如果
max_features < n_features
)每个
max_features
的拆分抽取
有关详细信息,请参阅 术语表 。
- verboseint, default=0
在拟合和预测时控制冗长程度。
- warm_startbool, default=False
当设置为
True
时,重用上一次调用fit的解决方案,并在集成中添加更多估计器,否则,拟合全新的森林。有关详细信息,请参阅 术语表 和 树集成_warm_start 。- class_weight{“balanced”, “balanced_subsample”}, dict or list of dicts, default=None
与类关联的权重,形式为
{class_label: weight}
。如果未给出,则所有类都被认为具有权重一。对于多输出问题,可以按y的列顺序提供字典列表。注意,对于多输出(包括多标签)权重应为每个列的每个类定义在其自己的字典中。例如,对于四类多标签分类,权重应为 [{0: 1, 1: 1}, {0: 1, 1: 5}, {0: 1, 1: 1}, {0: 1, 1: 1}] 而不是 [{1:1}, {2:5}, {3:1}, {4:1}]。
“balanced”模式使用y的值自动调整权重,与输入数据中的类频率成反比,如
n_samples / (n_classes * np.bincount(y))
“balanced_subsample”模式与”balanced”相同,只是权重是基于每个树的bootstrap样本计算的。
对于多输出,y的每一列的权重将被乘以。
注意,如果指定了sample_weight(通过fit方法传递),这些权重将与sample_weight相乘。
- ccp_alphanon-negative float, default=0.0
用于最小成本复杂度剪枝的复杂度参数。将选择成本复杂度小于
ccp_alpha
的最大子树。默认情况下,不进行剪枝。有关详细信息,请参阅 最小成本复杂度剪枝 。Added in version 0.22.
- max_samplesint or float, default=None
如果bootstrap为True,则从X中抽取的样本数量以训练每个基础估计器。
如果为None(默认),则抽取
X.shape[0]
个样本。如果是int,则抽取
max_samples
个样本。如果是float,则抽取
max_samples * X.shape[0]
个样本。因此,max_samples
应在区间(0.0, 1.0]
内。
Added in version 0.22.
- monotonic_cstarray-like of int of shape (n_features), default=None
- 指示要在每个特征上强制执行的单调性约束。
1: 单调递增
0: 无约束
-1: 单调递减
如果monotonic_cst为None,则不应用约束。
- 单调性约束不支持以下情况:
多类分类(即当
n_classes > 2
时),多输出分类(即当
n_outputs_ > 1
时),在数据包含缺失值时训练的分类。
约束适用于正类的概率。
更多信息请参阅 用户指南 。
Added in version 1.4.
- Attributes:
- estimator_
ExtraTreeClassifier
用于创建已拟合子估计器集合的子估计器模板。
Added in version 1.2:
base_estimator_
被重命名为estimator_
。- estimators_list of DecisionTreeClassifier
已拟合子估计器的集合。
- classes_ndarray of shape (n_classes,) or a list of such arrays
类标签(单输出问题),或类标签数组列表(多输出问题)。
- n_classes_int or list
类的数量(单输出问题),或每个输出类的数量列表(多输出问题)。
feature_importances_
ndarray of shape (n_features,)杂质特征重要性。
- n_features_in_int
在 fit 期间看到的特征数量。
Added in version 0.24.
- feature_names_in_ndarray of shape (
n_features_in_
,) 在 fit 期间看到的特征名称。仅当
X
的特征名称均为字符串时定义。Added in version 1.0.
- n_outputs_int
执行
fit
时的输出数量。- oob_score_float
使用袋外估计获得的训练数据集的分数。此属性仅在
oob_score
为True时存在。- oob_decision_function_ndarray of shape (n_samples, n_classes) or (n_samples, n_classes, n_outputs)
在训练集上使用袋外估计计算的决策函数。如果n_estimators很小,可能会有一个数据点从未在bootstrap中被遗漏。在这种情况下,
oob_decision_function_
可能包含NaN。此属性仅在oob_score
为True时存在。estimators_samples_
list of arrays子集,每个基估计器绘制的样本。
- estimator_
See also
ExtraTreesRegressor
具有随机拆分的极端随机树回归器。
RandomForestClassifier
具有最佳拆分的随机森林分类器。
RandomForestRegressor
使用具有最佳拆分的树的集成回归器。
Notes
控制树大小的参数(例如
max_depth
,min_samples_leaf
等)的默认值会导致完全生长且未修剪的树,这在某些数据集上可能会非常大。为了减少内存消耗,应通过设置这些参数值来控制树的复杂性和大小。References
[1]Geurts, D. Ernst., and L. Wehenkel, “Extremely randomized trees”, Machine Learning, 63(1), 3-42, 2006.
Examples
>>> from sklearn.ensemble import ExtraTreesClassifier >>> from sklearn.datasets import make_classification >>> X, y = make_classification(n_features=4, random_state=0) >>> clf = ExtraTreesClassifier(n_estimators=100, random_state=0) >>> clf.fit(X, y) ExtraTreesClassifier(random_state=0) >>> clf.predict([[0, 0, 0, 0]]) array([1])
- apply(X)#
将森林中的树应用于X,返回叶子索引。
- Parameters:
- X{array-like, sparse matrix},形状为 (n_samples, n_features)
输入样本。内部,其dtype将被转换为
dtype=np.float32
。如果提供稀疏矩阵,它将被转换为稀疏的csr_matrix
。
- Returns:
- X_leavesndarray,形状为 (n_samples, n_estimators)
对于X中的每个数据点x和森林中的每棵树,返回x最终所在的叶子索引。
- decision_path(X)#
返回森林中的决策路径。
Added in version 0.18.
- Parameters:
- X{array-like, sparse matrix},形状为 (n_samples, n_features)
输入样本。内部会将其 dtype 转换为
dtype=np.float32
。如果提供的是稀疏矩阵,它将被转换为稀疏的csr_matrix
。
- Returns:
- indicator形状为 (n_samples, n_nodes) 的稀疏矩阵
返回一个节点指示矩阵,其中非零元素表示样本经过这些节点。矩阵为 CSR 格式。
- n_nodes_ptr形状为 (n_estimators + 1,) 的 ndarray
indicator[n_nodes_ptr[i]:n_nodes_ptr[i+1]] 的列给出了第 i 个估计器的指示值。
- property estimators_samples_#
子集,每个基估计器绘制的样本。
返回一个动态生成的索引列表,标识用于拟合集成中每个成员的样本,即,袋内样本。
注意:为了不存储采样数据,从而减少对象的内存占用,每次调用该属性时都会重新创建列表。因此,获取该属性可能比预期的要慢。
- property feature_importances_#
杂质特征重要性。
数值越高,特征越重要。 特征的重要性计算为其带来的准则总减少量的(归一化)值。它也被称为基尼重要性。
警告:基于杂质的特征重要性对于高基数特征(许多唯一值)可能会产生误导。请参阅
sklearn.inspection.permutation_importance
作为替代方法。- Returns:
- feature_importances_ndarray of shape (n_features,)
该数组的值总和为1,除非所有树都是单节点树,仅由根节点组成,在这种情况下,它将是一个零数组。
- fit(X, y, sample_weight=None)#
构建一个从训练集(X, y)中生成的树的森林。
- Parameters:
- X{array-like, sparse matrix},形状为 (n_samples, n_features)
训练输入样本。内部,其 dtype 将被转换为
dtype=np.float32
。如果提供稀疏矩阵,它将被转换为稀疏的csc_matrix
。- yarray-like,形状为 (n_samples,) 或 (n_samples, n_outputs)
目标值(在分类中为类标签,在回归中为实数)。
- sample_weightarray-like,形状为 (n_samples,),默认=None
样本权重。如果为 None,则样本权重相等。在每个节点中搜索分割时,会忽略那些会创建子节点净零或负权重的分割。在分类的情况下,如果任何单个类在任一子节点中携带负权重,也会忽略这些分割。
- Returns:
- selfobject
拟合的估计器。
- get_metadata_routing()#
获取此对象的元数据路由。
请查看 用户指南 以了解路由机制的工作原理。
- Returns:
- routingMetadataRequest
MetadataRequest
封装的 路由信息。
- get_params(deep=True)#
获取此估计器的参数。
- Parameters:
- deepbool, 默认=True
如果为True,将返回此估计器和包含的子对象(也是估计器)的参数。
- Returns:
- paramsdict
参数名称映射到它们的值。
- predict(X)#
预测X的类别。
输入样本的预测类别是通过森林中的树木投票决定的,权重为它们的概率估计。也就是说,预测的类别是树木中概率估计均值最高的类别。
- Parameters:
- X{array-like, sparse matrix},形状为 (n_samples, n_features)
输入样本。内部将其dtype转换为
dtype=np.float32
。如果提供稀疏矩阵,它将被转换为稀疏的csr_matrix
。
- Returns:
- yndarray,形状为 (n_samples,) 或 (n_samples, n_outputs)
预测的类别。
- predict_log_proba(X)#
预测X的类别对数概率。
输入样本的预测类别对数概率是通过森林中树木的平均预测类别概率的对数计算的。
- Parameters:
- X{array-like, sparse matrix},形状为 (n_samples, n_features)
输入样本。内部将其dtype将转换为
dtype=np.float32
。如果提供稀疏矩阵,它将被转换为稀疏的csr_matrix
。
- Returns:
- pndarray,形状为 (n_samples, n_classes),或此类数组的列表
输入样本的类别概率。类别的顺序对应于属性 classes_ 中的顺序。
- predict_proba(X)#
预测X的类别概率。
输入样本的预测类别概率是通过森林中树的平均预测类别概率计算的。 单个树的类别概率是叶中相同类别样本的比例。
- Parameters:
- X{array-like, sparse matrix},形状为 (n_samples, n_features)
输入样本。内部会将其dtype转换为
dtype=np.float32
。如果提供稀疏矩阵,它将被转换为稀疏的csr_matrix
。
- Returns:
- pndarray,形状为 (n_samples, n_classes),或此类数组的列表
输入样本的类别概率。类别的顺序对应于属性 classes_ 中的顺序。
- score(X, y, sample_weight=None)#
返回给定测试数据和标签的平均准确率。
在多标签分类中,这是子集准确率,这是一个严格的指标,因为你要求每个样本的每个标签集都被正确预测。
- Parameters:
- X形状为 (n_samples, n_features) 的类数组
测试样本。
- y形状为 (n_samples,) 或 (n_samples, n_outputs) 的类数组
` X`的真实标签。
- sample_weight形状为 (n_samples,) 的类数组,默认=None
样本权重。
- Returns:
- scorefloat
self.predict(X)
相对于y
的平均准确率。
- set_fit_request(*, sample_weight: bool | None | str = '$UNCHANGED$') ExtraTreesClassifier #
Request metadata passed to the
fit
method.Note that this method is only relevant if
enable_metadata_routing=True
(seesklearn.set_config
). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True
: metadata is requested, and passed tofit
if provided. The request is ignored if metadata is not provided.False
: metadata is not requested and the meta-estimator will not pass it tofit
.None
: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str
: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED
) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline
. Otherwise it has no effect.- Parameters:
- sample_weightstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
sample_weight
parameter infit
.
- Returns:
- selfobject
The updated object.
- set_params(**params)#
设置此估计器的参数。
该方法适用于简单估计器以及嵌套对象(例如
Pipeline
)。后者具有形式为<component>__<parameter>
的参数,以便可以更新嵌套对象的每个组件。- Parameters:
- **paramsdict
估计器参数。
- Returns:
- selfestimator instance
估计器实例。
- set_score_request(*, sample_weight: bool | None | str = '$UNCHANGED$') ExtraTreesClassifier #
Request metadata passed to the
score
method.Note that this method is only relevant if
enable_metadata_routing=True
(seesklearn.set_config
). Please see User Guide on how the routing mechanism works.The options for each parameter are:
True
: metadata is requested, and passed toscore
if provided. The request is ignored if metadata is not provided.False
: metadata is not requested and the meta-estimator will not pass it toscore
.None
: metadata is not requested, and the meta-estimator will raise an error if the user provides it.str
: metadata should be passed to the meta-estimator with this given alias instead of the original name.
The default (
sklearn.utils.metadata_routing.UNCHANGED
) retains the existing request. This allows you to change the request for some parameters and not others.Added in version 1.3.
Note
This method is only relevant if this estimator is used as a sub-estimator of a meta-estimator, e.g. used inside a
Pipeline
. Otherwise it has no effect.- Parameters:
- sample_weightstr, True, False, or None, default=sklearn.utils.metadata_routing.UNCHANGED
Metadata routing for
sample_weight
parameter inscore
.
- Returns:
- selfobject
The updated object.