Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 39 for pipe (0.11 sec)

  1. TfidfTransformer — scikit-learn 1.5.0 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
    Fri May 31 14:06:04 UTC 2024
      147.4K 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
    Fri May 31 14:06:04 UTC 2024
      113.4K 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
    Fri May 31 14:06:04 UTC 2024
      154.9K bytes
      Cache
     
  4. What The US And UK's Toilets Tell Us About Thei...

    is because the toilet drain pipes are different sizes. The US...US has 3 inch toilet drain pipes, Europe uses 110mm (4.3 inches.)...
    digg.com/digg-vids/link/american-toilet-stalls-europe-design-productivity-video
    Sat Jun 01 01:19:12 UTC 2024
      136.9K bytes
      Cache
     
  5. Pipeline — scikit-learn 1.5.0 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
    Fri May 31 14:06:06 UTC 2024
      191.7K bytes
      Cache
     
  6. 6.3. Preprocessing data — scikit-learn 1.5.0 do...

    random_state = 42 ) >>> pipe = make_pipeline ( StandardScaler...(), LogisticRegression ()) >>> pipe . fit ( X_train , y_train )...
    scikit-learn.org/stable/modules/preprocessing.html
    Fri May 31 14:06:04 UTC 2024
      205.2K bytes
      Cache
     
  7. 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
    Fri May 31 14:06:04 UTC 2024
      128.6K bytes
      Cache
     
  8. 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
    Fri May 31 14:06:07 UTC 2024
      117.2K bytes
      Cache
     
  9. 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
    Fri May 31 14:06:04 UTC 2024
      135.4K bytes
      Cache
     
  10. 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
    Fri May 31 14:06:04 UTC 2024
      121.1K bytes
      1 views
      Cache
     
Back to top