Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 31 - 40 of 86 for pipe (0.13 sec)

  1. 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
    Thu May 16 17:15:45 UTC 2024
      37K bytes
      Cache
     
  2. 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
    Thu May 16 17:15:46 UTC 2024
      1.6M bytes
      4 views
     
  3. 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
    Thu May 16 17:15:45 UTC 2024
      60.7K bytes
      Cache
     
  4. 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
    Thu May 16 17:15:46 UTC 2024
      40K bytes
      Cache
     
  5. 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
    Thu May 16 17:15:46 UTC 2024
      56.4K bytes
      Cache
     
  6. 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
    Thu May 16 17:15:46 UTC 2024
      77K bytes
      Cache
     
  7. 1. Metadata Routing — scikit-learn 1.4.2 docume...

    = SelectKBest ( k = 2 ) >>> pipe = make_pipeline ( sel , lr )...cv_results = cross_validate ( ... pipe , ... X , ... y , ... cv = GroupKFold...
    scikit-learn.org/stable/metadata_routing.html
    Thu May 16 17:15:46 UTC 2024
      64.2K bytes
      Cache
     
  8. sklearn.preprocessing.maxabs_scale — scikit-lea...

    most risks of data leaking: pipe = make_pipeline(MaxAbsScaler(),...
    scikit-learn.org/stable/modules/generated/sklearn.preprocessing.maxabs_scale.html
    Thu May 16 17:15:46 UTC 2024
      19.5K bytes
      Cache
     
  9. Elasticsearch: The Official Distributed Search ...

    and from a piped query language. Start simple...
    www.elastic.co/elasticsearch
    Fri May 17 00:03:20 UTC 2024
      563.7K bytes
      Cache
     
  10. sklearn.preprocessing.scale — scikit-learn 1.4....

    most risks of data leaking: pipe = make_pipeline(StandardScaler(),...
    scikit-learn.org/stable/modules/generated/sklearn.preprocessing.scale.html
    Thu May 16 17:15:46 UTC 2024
      21.2K bytes
      Cache
     
Back to top