- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 11 - 20 of 127 for pipe (0.17 sec)
-
3.2. Tuning the hyper-parameters of an estimato...
tion import SelectKBest >>> pipe = Pipeline ([ ... ( 'select'...>>> search = GridSearchCV ( pipe , param_grid , cv = 5 ) . fit...scikit-learn.org/stable/modules/grid_search.html -
Pipelining: chaining a PCA and a logistic regre...
plot_digits_pipe.py Download zipped: plot_digits_pipe.zip Related...max_iter = 10000 , tol = 0.1 ) pipe = Pipeline ( steps = [( "scaler"...scikit-learn.org/stable/auto_examples/compose/plot_digits_pipe.html -
One-Class SVM versus One-Class SVM using Stocha...
1e-4 ) pipe_sgd = make_pipeline ( transform , clf_sgd ) pipe_sgd...y_pred_train_sgd = pipe_sgd . predict ( X_train ) y_pred_test_sgd = pipe_sgd...scikit-learn.org/stable/auto_examples/linear_model/plot_sgdocsvm_vs_ocsvm.html -
Replace Splunk with Elastic for logs, security,...
Query language Elastic's piped query language and engine, ES|QL...JSON-based DSL queries. Splunk's piped query language, SPL, allows...www.elastic.co/splunk-replacement -
Comparing Target Encoder with Other Encoders — ...
pipe ): result = cross_validate ( pipe , X , y , scoring...categorical_features ), ] ) pipe = make_pipeline ( preprocessor...scikit-learn.org/stable/auto_examples/preprocessing/plot_target_encoder.html -
7.1. Pipelines and composite estimators — sciki...
SVC ())] >>> pipe = Pipeline ( estimators ) >>> pipe Pipeline(s...pipeline: >>> pipe . steps [ 0 ] ('reduce_dim', PCA()) >>> pipe [ 0 ]...scikit-learn.org/stable/modules/compose.html -
Displaying Pipelines — scikit-learn 1.7.0 docum...
] pipe = Pipeline ( steps ) pipe # click on the...= "linear" ))] pipe = Pipeline ( steps ) pipe # click on the...scikit-learn.org/stable/auto_examples/miscellaneous/plot_pipeline_display.html -
Recursive feature elimination — scikit-learn 1....
] ) pipe . fit ( X , y ) ranking = pipe . named_steps...), - 1 )) y = digits . target pipe = Pipeline ( [ ( "scaler" ,...scikit-learn.org/stable/auto_examples/feature_selection/plot_rfe_digits.html -
auto_examples_python.zip
pipe.set_params(max_depth=3, max_iter=15) else: pipe.set_params(... step=1)), ] ) pipe.fit(X, y) ranking = pipe.named_steps["rf...scikit-learn.org/stable/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip -
Getting Started — scikit-learn 1.7.0 documentation
create a pipeline object >>> pipe = make_pipeline ( ... StandardScaler...# fit the whole pipeline >>> pipe . fit ( X_train , y_train )...scikit-learn.org/stable/getting_started.html