The :mod:sklearn.pipeline module implements utilities to build a composite
estimator, as a chain of transforms and estimators.
pipeline模块通过建立一系列的转化和算法,形成一个复合的算法。主要组成部分包括:
- class Pipeline(_BaseComposition) 管道
- def make_pipeline(*steps, **kwargs)
- class FeatureUnion(_BaseComposition, TransformerMixin) 联合特征
- def make_union(*transformers, **kwargs)
未完待续
博客介绍了pipeline模块,该模块可通过建立一系列转化和算法形成复合算法。其主要组成部分有Pipeline类(管道)、make_pipeline函数、FeatureUnion类(联合特征)以及make_union函数。
150

被折叠的 条评论
为什么被折叠?



