Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 11 - 20 of 127 for pipe (0.17 sec)

  1. 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
    Mon Jul 14 17:22:22 UTC 2025
      130.8K bytes
      Cache
     
  2. 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
    Mon Jul 14 17:22:21 UTC 2025
      97.2K bytes
      Cache
     
  3. 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
    Mon Jul 14 17:22:21 UTC 2025
      122.7K bytes
      1 views
      Cache
     
  4. 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
    Tue Jul 15 01:13:03 UTC 2025
      579.6K bytes
      2 views
      Cache
     
  5. 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
    Mon Jul 14 17:22:21 UTC 2025
      119.3K bytes
      Cache
     
  6. 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
    Mon Jul 14 17:22:21 UTC 2025
      112.5K bytes
      Cache
     
  7. 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
    Mon Jul 14 17:22:21 UTC 2025
      287.7K bytes
      Cache
     
  8. 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
    Mon Jul 14 17:22:21 UTC 2025
      91.4K bytes
      Cache
     
  9. 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
    Fri Jul 11 17:08:41 UTC 2025
      1.7M bytes
      7 views
     
  10. 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
    Mon Jul 14 17:22:21 UTC 2025
      48.7K bytes
      Cache
     
Back to top