Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

  1. 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
    Tue Apr 30 16:14:29 UTC 2024
      52.7K bytes
     
  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
    Tue Apr 30 16:14:28 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
    Tue Apr 30 16:14:29 UTC 2024
      73.9K bytes
      Cache
     
  4. 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
    Tue Apr 30 16:14:29 UTC 2024
      59.5K bytes
      Cache
     
  5. Displaying Pipelines — scikit-learn 1.4.2 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
    Tue Apr 30 16:14:29 UTC 2024
      143.7K bytes
      Cache
     
  6. 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
    Tue Apr 30 16:14:28 UTC 2024
      33.7K bytes
      Cache
     
  7. Look Inside The Abandoned McNeal Mansion In New...

    Iron Pipe and Foundry Company, now known simply as US Pipe, purchased...founding a pipe plant and foundry, the McNeal Pike and Foundry...
    digg.com/insider/link/inside-mcneal-mansion-abandoned-photos
    Thu Apr 04 01:22:33 UTC 2024
      137.5K bytes
      Cache
     
  8. 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
    Tue Apr 30 16:14:29 UTC 2024
      56.4K bytes
      Cache
     
  9. 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
    Tue Apr 30 16:14:29 UTC 2024
      60.7K bytes
      Cache
     
  10. Release Highlights for scikit-learn 1.0 — sciki...

    LogisticRegression ()) pipe . fit ( X , y ) pipe [: - 1 ] . get_feature_names_out...the latest version (with pip): pip install -- upgrade scikit...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_0_0.html
    Tue Apr 30 16:14:29 UTC 2024
      50.4K bytes
      Cache
     
Back to top