Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 201 - 220 of 864 for test (0.15 sec)

  1. sklearn.linear_model.SGDRegressor — scikit-lear...

    n_features) Test samples. For some estimators...training will stop when (loss > best_loss - tol) for n_iter_no_change...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.SGDRegressor.html
    Wed May 15 13:59:41 UTC 2024
      81.6K bytes
      Cache
     
  2. Gradient Boosting regression — scikit-learn 1.4...

    X_test , y_train , y_test = train_test_split ( X ,...mean_squared_error ( y_test , reg . predict ( X_test )) print ( "The...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_regression.html
    Wed May 15 13:59:41 UTC 2024
      44.6K bytes
      Cache
     
  3. Gradient Boosting Out-of-Bag estimates — scikit...

    -= test_score [ 0 ] test_best_iter = x [ np . argmin ( test_score...x = test_best_iter , color = test_color , linestyle = test_line...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_oob.html
    Wed May 15 13:59:40 UTC 2024
      48.8K bytes
      Cache
     
  4. L1-based models for Sparse Signals — scikit-lea...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.5 , shuffle = False ) In...
    scikit-learn.org/stable/auto_examples/linear_model/plot_lasso_and_elasticnet.html
    Wed May 15 13:59:41 UTC 2024
      61.3K bytes
      Cache
     
  5. Custom refit strategy of a grid search with cro...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split..., "mean_test_recall" , "std_test_recall" , "mean_test_precision"...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_digits.html
    Wed May 15 13:59:40 UTC 2024
      60.4K bytes
      Cache
     
  6. MetaFilter | Community Weblog

    Lan Lam series from America's Test Kitchen. From suggestions for...style="display:none"></div> <script type="text/javascript"> !function() { var...
    www.metafilter.com/
    Thu May 16 00:38:38 UTC 2024
      81.4K bytes
      2 views
      Cache
     
  7. Installing scikit-learn — scikit-learn 1.4.2 do...

    2 tests pytest-cov 2.9.0 tests ruff 0.0.272 tests black 23.3.0...23.3.0 tests mypy 1.3 tests pyamg 4.0.0 tests polars 0.19.12...
    scikit-learn.org/stable/install.html
    Wed May 15 13:59:41 UTC 2024
      37.3K bytes
      Cache
     
  8. Sample pipeline for text feature extraction and...

    ) data_test = fetch_20newsgroups ( subset = "test" , categories...vect__norm: l1 test_accuracy = random_search . score ( data_test . data...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_text_feature_extraction.html
    Wed May 15 13:59:40 UTC 2024
      91.7K bytes
      Cache
     
  9. Balance model complexity and cross-validated sc...

    deviation of the best `mean_test_score`. """ best_score_idx = np...][ best_score_idx ] - cv_results [ "std_test_score" ][ best_score_idx...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_refit_callable.html
    Wed May 15 13:59:43 UTC 2024
      37K bytes
      Cache
     
  10. Single estimator versus bagging: bias-variance ...

    ( y ) X_test , y_test = generate ( n_samples = n_test , noise...training set n_test = 1000 # Size of the test set noise = 0.1...
    scikit-learn.org/stable/auto_examples/ensemble/plot_bias_variance.html
    Wed May 15 13:59:41 UTC 2024
      52.4K bytes
      Cache
     
  11. GMM covariances — scikit-learn 1.4.2 documentation

    train_index ] X_test = iris . data [ test_index ] y_test = iris . target...transAxes ) y_test_pred = estimator . predict ( X_test ) test_accuracy...
    scikit-learn.org/stable/auto_examples/mixture/plot_gmm_covariances.html
    Wed May 15 13:59:40 UTC 2024
      45.5K bytes
      Cache
     
  12. sklearn.impute.IterativeImputer — scikit-learn ...

    missing values at transform/test time. keep_empty_features bool,...simple estimators as well as on nested objects (such as Pipeline )....
    scikit-learn.org/stable/modules/generated/sklearn.impute.IterativeImputer.html
    Wed May 15 13:59:41 UTC 2024
      61.8K bytes
      Cache
     
  13. Release Highlights for scikit-learn 0.24 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( X ,...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_24_0.html
    Wed May 15 13:59:43 UTC 2024
      92K bytes
      Cache
     
  14. Working With Text Data — scikit-learn 1.4.2 doc...

    >>> docs_test = twenty_test . data >>> predicted = text_clf . predict...object’s best_score_ and best_params_ attributes store the best mean...
    scikit-learn.org/stable/tutorial/text_analytics/working_with_text_data.html
    Wed May 15 13:59:40 UTC 2024
      64.6K bytes
      Cache
     
  15. Faces recognition example using eigenfaces and ...

    X_test , y_train , y_test = train_test_split ( X , y , test_size...set and a test and keep 25% of the data for testing. X_train ,...
    scikit-learn.org/stable/auto_examples/applications/plot_face_recognition.html
    Wed May 15 13:59:41 UTC 2024
      50K bytes
      Cache
     
  16. Multiclass sparse logistic regression on 20newg...

    X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) accuracy = np . sum ( y_pred == y_test ) / y_test...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sparse_logistic_regression_20newsgroups.html
    Wed May 15 13:59:41 UTC 2024
      41K bytes
      Cache
     
  17. Kernel PCA — scikit-learn 1.4.2 documentation

    X_test , y_train , y_test = train_test_split ( X ,..."Training data" ) test_ax . scatter ( X_test [:, 0 ], X_test [:, 1 ],...
    scikit-learn.org/stable/auto_examples/decomposition/plot_kernel_pca.html
    Wed May 15 13:59:41 UTC 2024
      44.1K bytes
      Cache
     
  18. Confusion matrix — scikit-learn 1.4.2 documenta...

    set and a test set X_train , X_test , y_train , y_test = train_test_split...from_estimator ( classifier , X_test , y_test , display_labels = class_names...
    scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html
    Wed May 15 13:59:43 UTC 2024
      26.4K bytes
      Cache
     
  19. Popular Favorites | MetaFilter

    Best printer 2024, best printer for home use,...camaraderie of the Bon Appetit Test Kitchen? And then, well, Milkshake...
    www.metafilter.com/popular.mefi
    Tue May 07 00:44:32 UTC 2024
      64.6K bytes
      Cache
     
  20. Dimensionality Reduction with Neighborhood Comp...

    train/test X_train , X_test , y_train , y_test = train_test_split...( model . transform ( X_test ), y_test ) # Embed the data set...
    scikit-learn.org/stable/auto_examples/neighbors/plot_nca_dim_reduction.html
    Wed May 15 13:59:43 UTC 2024
      35.2K bytes
      Cache
     
Back to top