Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 120 for pipe (0.3 sec)

  1. TfidfTransformer — scikit-learn 1.7.2 documenta...

    'one' ] >>> pipe = Pipeline ([( 'count' , CountVectorizer...TfidfTransformer ())]) . fit ( corpus ) >>> pipe [ 'count' ] . transform ( corpus...
    scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.TfidfTransformer.html
    Wed Nov 05 14:36:33 UTC 2025
      141.3K bytes
      Cache
     
  2. 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
    Wed Nov 05 14:36:32 UTC 2025
      114.8K bytes
      Cache
     
  3. Release Highlights for scikit-learn 0.24 — scik...

    the latest version (with pip): pip install -- upgrade scikit...fetch_covtype ( return_X_y = True ) pipe = make_pipeline ( MinMaxScaler...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_24_0.html
    Wed Nov 05 14:36:33 UTC 2025
      176.2K bytes
      Cache
     
  4. Write a synthetic test | Elastic Docs

    pipe the inline journey into the...save that code to a file and pipe the file’s contents into @elastic-synthetics...
    www.elastic.co/docs/solutions/observability/synthetics/write-synthetic-test
    Tue Nov 04 17:37:30 UTC 2025
      383.2K bytes
      Cache
     
  5. quantile_transform — scikit-learn 1.7.2 documen...

    most risks of data leaking: pipe = make_pipeline(QuantileTransformer(),...
    scikit-learn.org/stable/modules/generated/sklearn.preprocessing.quantile_transform.html
    Fri Oct 31 16:42:55 UTC 2025
      117K bytes
      Cache
     
  6. minmax_scale — scikit-learn 1.7.2 documentation

    most risks of data leaking: pipe = make_pipeline(MinMaxScaler(),...
    scikit-learn.org/stable/modules/generated/sklearn.preprocessing.minmax_scale.html
    Wed Nov 05 14:36:32 UTC 2025
      115.6K bytes
      Cache
     
  7. Pipeline — scikit-learn 1.7.2 documentation

    random_state = 0 ) >>> pipe = Pipeline ([( 'scaler' , StandardScaler...test set into the train set >>> pipe . fit ( X_train , y_train )...
    scikit-learn.org/stable/modules/generated/sklearn.pipeline.Pipeline.html
    Wed Nov 05 14:36:33 UTC 2025
      187.8K bytes
      Cache
     
  8. 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
    Wed Nov 05 14:36:33 UTC 2025
      10.3K bytes
      1 views
     
  9. grid_search.rst.txt

    tion import SelectKBest >>> pipe = Pipeline([ ... ('select',...8]} >>> search = GridSearchCV(pipe, param_grid, cv=5).fit(X, y)...
    scikit-learn.org/stable/_sources/modules/grid_search.rst.txt
    Tue Nov 04 06:34:51 UTC 2025
      33.4K bytes
      2 views
     
  10. 7.3. Preprocessing data — scikit-learn 1.7.2 do...

    random_state = 42 ) >>> pipe = make_pipeline ( StandardScaler...(), LogisticRegression ()) >>> pipe . fit ( X_train , y_train )...
    scikit-learn.org/stable/modules/preprocessing.html
    Wed Nov 05 14:36:32 UTC 2025
      198.2K bytes
      Cache
     
Back to top