sklearn六大板块

六大板块

分类 回归 聚类 数据降维 数据预处理 特征抽取

统一API

estimator.fit(X_train,[y_train]) estimator.fit(X_train,[y_train])
estimator.predict(X_test) estimator.transform(X_test)
适应于 适应于
Classification Preprocessing
Regression Dimensionality Reduction
Clustering Feature Extraction
- Feature selection
原文地址:https://www.cnblogs.com/cnkai/p/7755028.html