本文整理匯總了Python中sklearn.feature_selection.base.SelectorMixin方法的典型用法代碼示例。如果您正苦於以下問題:Python base.SelectorMixin方法的具體用法?Python base.SelectorMixin怎麽用?Python base.SelectorMixin使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sklearn.feature_selection.base
的用法示例。
在下文中一共展示了base.SelectorMixin方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_template_1
# 需要導入模塊: from sklearn.feature_selection import base [as 別名]
# 或者: from sklearn.feature_selection.base import SelectorMixin [as 別名]
def test_template_1():
"""Assert that TPOT template option generates pipeline when each step is a type of operator."""
tpot_obj = TPOTClassifier(
random_state=42,
verbosity=0,
template='Selector-Transformer-Classifier'
)
tpot_obj._fit_init()
pop = tpot_obj._toolbox.population(n=10)
for deap_pipeline in pop:
operator_count = tpot_obj._operator_count(deap_pipeline)
sklearn_pipeline = tpot_obj._toolbox.compile(expr=deap_pipeline)
assert operator_count == 3
assert issubclass(sklearn_pipeline.steps[0][1].__class__, SelectorMixin)
assert issubclass(sklearn_pipeline.steps[1][1].__class__, TransformerMixin)
assert issubclass(sklearn_pipeline.steps[2][1].__class__, ClassifierMixin)
示例2: test_template_2
# 需要導入模塊: from sklearn.feature_selection import base [as 別名]
# 或者: from sklearn.feature_selection.base import SelectorMixin [as 別名]
def test_template_2():
"""Assert that TPOT template option generates pipeline when each step is operator type with a duplicate main type."""
tpot_obj = TPOTClassifier(
random_state=42,
verbosity=0,
template='Selector-Selector-Transformer-Classifier'
)
tpot_obj._fit_init()
pop = tpot_obj._toolbox.population(n=10)
for deap_pipeline in pop:
operator_count = tpot_obj._operator_count(deap_pipeline)
sklearn_pipeline = tpot_obj._toolbox.compile(expr=deap_pipeline)
assert operator_count == 4
assert issubclass(sklearn_pipeline.steps[0][1].__class__, SelectorMixin)
assert issubclass(sklearn_pipeline.steps[1][1].__class__, SelectorMixin)
assert issubclass(sklearn_pipeline.steps[2][1].__class__, TransformerMixin)
assert issubclass(sklearn_pipeline.steps[3][1].__class__, ClassifierMixin)
示例3: test_template_3
# 需要導入模塊: from sklearn.feature_selection import base [as 別名]
# 或者: from sklearn.feature_selection.base import SelectorMixin [as 別名]
def test_template_3():
"""Assert that TPOT template option generates pipeline when one of steps is a specific operator."""
tpot_obj = TPOTClassifier(
random_state=42,
verbosity=0,
template='SelectPercentile-Transformer-Classifier'
)
tpot_obj._fit_init()
pop = tpot_obj._toolbox.population(n=10)
for deap_pipeline in pop:
operator_count = tpot_obj._operator_count(deap_pipeline)
sklearn_pipeline = tpot_obj._toolbox.compile(expr=deap_pipeline)
assert operator_count == 3
assert sklearn_pipeline.steps[0][0] == 'SelectPercentile'.lower()
assert issubclass(sklearn_pipeline.steps[0][1].__class__, SelectorMixin)
assert issubclass(sklearn_pipeline.steps[1][1].__class__, TransformerMixin)
assert issubclass(sklearn_pipeline.steps[2][1].__class__, ClassifierMixin)
示例4: test_template_4
# 需要導入模塊: from sklearn.feature_selection import base [as 別名]
# 或者: from sklearn.feature_selection.base import SelectorMixin [as 別名]
def test_template_4():
"""Assert that TPOT template option generates pipeline when one of steps is a specific operator."""
tpot_obj = TPOTClassifier(
population_size=5,
generations=2,
random_state=42,
verbosity=0,
config_dict = 'TPOT light',
template='SelectPercentile-Transformer-Classifier'
)
tpot_obj.fit(pretest_X, pretest_y)
assert isinstance(tpot_obj._optimized_pipeline, creator.Individual)
assert not (tpot_obj._start_datetime is None)
sklearn_pipeline = tpot_obj.fitted_pipeline_
operator_count = tpot_obj._operator_count(tpot_obj._optimized_pipeline)
assert operator_count == 3
assert sklearn_pipeline.steps[0][0] == 'SelectPercentile'.lower()
assert issubclass(sklearn_pipeline.steps[0][1].__class__, SelectorMixin)
assert issubclass(sklearn_pipeline.steps[1][1].__class__, TransformerMixin)
assert issubclass(sklearn_pipeline.steps[2][1].__class__, ClassifierMixin)
示例5: _filter
# 需要導入模塊: from sklearn.feature_selection import base [as 別名]
# 或者: from sklearn.feature_selection.base import SelectorMixin [as 別名]
def _filter(obj):
if isinstance(obj, DataFrameMapper):
obj.features = _filter_steps(obj.features)
if hasattr(obj, "built_features"):
if obj.built_features is not None:
obj.built_features = _filter_steps(obj.built_features)
elif isinstance(obj, ColumnTransformer):
obj.transformers = _filter_steps(obj.transformers)
obj.remainder = _filter(obj.remainder)
if hasattr(obj, "transformers_"):
obj.transformers_ = _filter_steps(obj.transformers_)
elif isinstance(obj, FeatureUnion):
obj.transformer_list = _filter_steps(obj.transformer_list)
elif isinstance(obj, Pipeline):
obj.steps = _filter_steps(obj.steps)
elif isinstance(obj, SelectorMixin):
return SelectorProxy(obj)
elif isinstance(obj, list):
return [_filter(e) for e in obj]
return obj