Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 11 - 20 of 59 for pipe (0.1 sec)

  1. Pipelining: chaining a PCA and a logistic regre...

    1 ) pipe = Pipeline ( steps = [( "scaler"...), } search = GridSearchCV ( pipe , param_grid , n_jobs = 2 )...
    scikit-learn.org/stable/auto_examples/compose/plot_digits_pipe.html
    Fri May 03 17:04:25 UTC 2024
      33.7K bytes
      Cache
     
  2. 6.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
    Fri May 03 17:04:24 UTC 2024
      90.1K bytes
      Cache
     
  3. 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
    Fri May 03 17:04:25 UTC 2024
      73.9K bytes
      Cache
     
  4. Categorical Feature Support in Gradient Boostin...

    for pipe in ( hist_dropped , hist_one_hot...hist_ordinal , hist_native ): if pipe is hist_native : # The native...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_categorical.html
    Fri May 03 17:04:25 UTC 2024
      60.7K bytes
      Cache
     
  5. Balance model complexity and cross-validated sc...

    argmin () ] return best_idx pipe = Pipeline ( [ ( "reduce_dim"...14 ]} grid = GridSearchCV ( pipe , cv = 10 , n_jobs = 1 , param_grid...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_refit_callable.html
    Fri May 03 17:04:25 UTC 2024
      37K bytes
      Cache
     
  6. Selecting dimensionality reduction with Pipelin...

    load_digits ( return_X_y = True ) pipe = Pipeline ( [ ( "scaling" ,...f)" ] grid = GridSearchCV ( pipe , n_jobs = 1 , param_grid =...
    scikit-learn.org/stable/auto_examples/compose/plot_compare_reduction.html
    Fri May 03 17:04:25 UTC 2024
      56.4K bytes
      Cache
     
  7. Logstash Reference [8.13] | Elastic

    logstash log4j lumberjack meetup pipe puppet_facter rabbitmq redis...nagios_nsca opentsdb pagerduty pipe rabbitmq redis redmine riak...
    www.elastic.co/guide/en/logstash/current/index.html
    Wed May 01 23:23:50 UTC 2024
      47.6K bytes
      1 views
      Cache
     
  8. Getting Started — scikit-learn 1.4.2 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
    Fri May 03 17:04:25 UTC 2024
      40K bytes
      Cache
     
  9. preprocessing.rst.txt

    random_state=42) >>> pipe = make_pipeline(StandardScaler(),..., LogisticRegression()) >>> pipe.fit(X_train, y_train) # apply...
    scikit-learn.org/stable/_sources/modules/preprocessing.rst.txt
    Fri May 03 17:04:25 UTC 2024
      52.7K bytes
     
  10. Introducing the set_output API — scikit-learn 1...

    transform_output = "pandas" ) num_pipe = make_pipeline ( SimpleImputer...ColumnTransformer ( ( ( "numerical" , num_pipe , num_cols ), ( "categorical"...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_set_output.html
    Fri May 03 17:04:25 UTC 2024
      77K bytes
      Cache
     
Back to top