Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 11 - 20 of 63 for pipe (0.08 sec)

  1. 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 May 28 11:51:34 UTC 2024
      121.1K bytes
      1 views
      Cache
     
  2. 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 May 28 11:51:34 UTC 2024
      135.4K bytes
      Cache
     
  3. 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 May 28 11:51:34 UTC 2024
      117.2K bytes
      Cache
     
  4. Displaying Pipelines — scikit-learn 1.5.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
    Tue May 28 11:51:33 UTC 2024
      204.6K bytes
      Cache
     
  5. 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 May 28 11:51:32 UTC 2024
      123.8K bytes
      Cache
     
  6. 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
    Tue May 28 11:51:34 UTC 2024
      98.9K bytes
      Cache
     
  7. 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 May 28 11:51:33 UTC 2024
      119.3K bytes
      Cache
     
  8. Which Movies Popularized (or Tarnished) Baby Na...

    the pipes, the pipes are calling." In response,...Dannys are Irishmen who hear the pipes a'callin. Somebody made something...
    digg.com/stat-significant/link/which-movies-popularized-or-tarnished-baby-names
    Thu May 23 01:17:49 UTC 2024
      152.5K bytes
      Cache
     
  9. 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
    Tue May 28 11:51:34 UTC 2024
      138.5K bytes
      Cache
     
  10. scale — scikit-learn 1.5.0 documentation

    most risks of data leaking: pipe = make_pipeline(StandardScaler(),...
    scikit-learn.org/stable/modules/generated/sklearn.preprocessing.scale.html
    Sat May 25 13:41:01 UTC 2024
      117.6K bytes
      Cache
     
Back to top