Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

  1. getting_started.rst.txt

    create a pipeline object >>> pipe = make_pipeline( ... StandardScaler(),...# fit the whole pipeline >>> pipe.fit(X_train, y_train) Pipel...
    scikit-learn.org/stable/_sources/getting_started.rst.txt
    Tue May 14 20:49:03 UTC 2024
      10K bytes
     
  2. 6.3. Preprocessing data — scikit-learn 1.4.2 do...

    random_state = 42 ) >>> pipe = make_pipeline ( StandardScaler...(), LogisticRegression ()) >>> pipe . fit ( X_train , y_train )...
    scikit-learn.org/stable/modules/preprocessing.html
    Tue May 14 20:49:02 UTC 2024
      170.5K bytes
      Cache
     
  3. 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
    Tue May 14 20:49:03 UTC 2024
      105.3K 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 May 14 20:49:02 UTC 2024
      59.5K bytes
      Cache
     
  5. 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 May 14 20:49:03 UTC 2024
      33.7K bytes
      Cache
     
  6. 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 14 20:49:01 UTC 2024
      90.1K bytes
      Cache
     
  7. 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 14 20:49:02 UTC 2024
      73.9K bytes
      Cache
     
  8. 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 May 14 20:49:03 UTC 2024
      143.7K bytes
      Cache
     
  9. 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 14 20:49:02 UTC 2024
      37K bytes
      Cache
     
  10. auto_examples_python.zip

    pipe.set_params(max_depth=3, max_iter=15) else: pipe.set_params(...tol=1e-4 ) pipe_sgd = make_pipeline(transform, clf_sgd) pipe_sgd.fit(X_train)...
    scikit-learn.org/stable/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip
    Tue May 14 20:49:02 UTC 2024
      1.6M bytes
      4 views
     
Back to top