We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
estimator
model.fit()
model.coef_ , model.labels_ , model.intercept_ , model.cluster_centers_ , model.inertia_
input X should be two dimension: X = [:,np.newaxis]
predictor
model.predict()
model.predict_proba()
model.score(trainX, testX)
model.decision_function(testX)
transformer (.fit() .transform())
LabelEncoder: 1d, LE.classes_
OrdinalEncoder: nd, OE.categories_ , 有顺序
OneHotEncoder: 2d
MinMaxScaler: 2d, X.reshape(-1,1)
StandardScaler: 2d
meta estimator
ensemble.BaggingClassifier
ensemble.VotingClassifier
multiclass.OneVsOneClassifier
multiclass.OneVsRestClassifier
multioutput.MultiOutputClassifier
impute.SimpleImputer
model_selection.GridSearchCV
model_selection.RandomizedSearchCV
pipeline.Pipeline
非常详细的sklearn介绍
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TL;DR
Classification, Regression, Clustering, Dimensionality reduction, Model selection, Preprocessing
Load and read data
API
estimator
model.fit()
model.coef_ , model.labels_ , model.intercept_ , model.cluster_centers_ , model.inertia_
input X should be two dimension: X = [:,np.newaxis]
predictor
model.predict()
model.predict_proba()
model.score(trainX, testX)
model.decision_function(testX)
transformer (.fit() .transform())
LabelEncoder: 1d, LE.classes_
OrdinalEncoder: nd, OE.categories_ , 有顺序
OneHotEncoder: 2d
MinMaxScaler: 2d, X.reshape(-1,1)
StandardScaler: 2d
meta estimator
ensemble.BaggingClassifier
ensemble.VotingClassifier
multiclass.OneVsOneClassifier
multiclass.OneVsRestClassifier
multioutput.MultiOutputClassifier
impute.SimpleImputer
model_selection.GridSearchCV
model_selection.RandomizedSearchCV
pipeline.Pipeline

Ref
非常详细的sklearn介绍
The text was updated successfully, but these errors were encountered: