Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 321 - 340 of 1,341 for test (0.31 sec)

  1. 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
    Tue Jul 01 15:59:33 UTC 2025
      115.6K bytes
      Cache
     
  2. Installing scikit-learn — scikit-learn 1.7.0 do...

    2 tests pytest-cov 2.9.0 tests ruff 0.11.7 tests mypy 1.15...1.15 tests pyamg 4.2.1 tests polars 0.20.30 docs, tests pyarrow...
    scikit-learn.org/stable/install.html
    Tue Jul 01 15:59:32 UTC 2025
      54K bytes
      Cache
     
  3. Sean 'Diddy' Combs trial recap: Defense wraps c...

    "It doesn't pass the laugh test. Common sense tells you (that)...his sexual desires. Share Testing the mic Adam Reiss Agnifilo...
    www.nbcnews.com/news/us-news/live-blog/sean-diddy-combs-trial-live-closing-arguments-defense-rcna...
    Sat Jun 28 01:05:40 UTC 2025
      1.2M bytes
      Cache
     
  4. GMM covariances — scikit-learn 1.7.0 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
    Tue Jul 01 15:59:35 UTC 2025
      108.4K bytes
      Cache
     
  5. 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
    Tue Jul 01 15:59:35 UTC 2025
      106.2K bytes
      Cache
     
  6. Compare cross decomposition methods — scikit-le...

    ) X_test_r , Y_test_r = cca . transform ( X_test , Y_test ) Total...Y_train ) X_test_r , Y_test_r = plsca . transform ( X_test , Y_test...
    scikit-learn.org/stable/auto_examples/cross_decomposition/plot_compare_cross_decomposition.html
    Tue Jul 01 15:59:35 UTC 2025
      127.4K bytes
      Cache
     
  7. 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
    Tue Jul 01 15:59:33 UTC 2025
      136K bytes
      Cache
     
  8. NeighborhoodComponentsAnalysis — scikit-learn 1...

    X_test , y_train , y_test = train_test_split ( X ,...print ( knn . score ( X_test , y_test )) 0.933333... >>> knn ....
    scikit-learn.org/stable/modules/generated/sklearn.neighbors.NeighborhoodComponentsAnalysis.html
    Tue Jul 01 15:59:34 UTC 2025
      143K bytes
      Cache
     
  9. Live updates: Mike Lee removes posts on Minneso...

    him of doing everything to "test the boundaries of his power"...
    www.nbcnews.com/politics/politics-news/live-blog/trump-administration-tariffs-iran-israel-live-up...
    Wed Jun 18 01:12:39 UTC 2025
      1.1M bytes
      Cache
     
  10. 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
    Tue Jul 01 15:59:33 UTC 2025
      98.2K bytes
      Cache
     
  11. ExtraTreesClassifier — scikit-learn 1.7.0 docum...

    max_leaf_nodes in best-first fashion. Best nodes are defined...shape (n_samples, n_features) Test samples. y array-like of shape...
    scikit-learn.org/stable/modules/generated/sklearn.ensemble.ExtraTreesClassifier.html
    Tue Jul 01 15:59:32 UTC 2025
      167.6K bytes
      Cache
     
  12. Overview of multiclass training meta-estimators...

    examples Nested versus non-nested cross-validation Nested versus..."DecisionTreeClassifi" : cv_results_tree [ "test_score" ], "OneVsOneClassifier"...
    scikit-learn.org/stable/auto_examples/multiclass/plot_multiclass_overview.html
    Tue Jul 01 15:59:33 UTC 2025
      114.3K bytes
      Cache
     
  13. Multiclass Receiver Operating Characteristic (R...

    X_test , y_train , y_test , ) = train_test_split ( X...y_onehot_test = label_binarizer . transform ( y_test ) y_onehot_test...
    scikit-learn.org/stable/auto_examples/model_selection/plot_roc.html
    Tue Jul 01 15:59:35 UTC 2025
      150.8K bytes
      Cache
     
  14. Statistical comparison of models using grid sea...

    "rank_test_score" , "mean_test_score" , "std_test_score" ]]...params rank_test_score mean_test_score std_test_score kernel...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_stats.html
    Tue Jul 01 15:59:35 UTC 2025
      192K 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
    Tue Jul 01 15:59:32 UTC 2025
      113.1K bytes
      Cache
     
  16. Gradient Boosting regression — scikit-learn 1.7...

    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
    Tue Jul 01 15:59:32 UTC 2025
      110K bytes
      Cache
     
  17. Kernel PCA — scikit-learn 1.7.0 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
    Tue Jul 01 15:59:35 UTC 2025
      107.5K bytes
      Cache
     
  18. Plot classification probability — scikit-learn ...

    X_test , y_train , y_test = train_test_split ( X ,...predict_proba ( X_test ) accuracy_test = accuracy_score ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/classification/plot_classification_probability.html
    Tue Jul 01 15:59:32 UTC 2025
      126.1K bytes
      Cache
     
  19. IterativeImputer — scikit-learn 1.7.0 documenta...

    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
    Tue Jul 01 15:59:34 UTC 2025
      151.5K bytes
      Cache
     
  20. Prediction Intervals for Gradient Boosting Regr...

    test datasets: X_train , X_test , y_train , y_test = train_test_split...( X_test , y_test , "b." , markersize = 10 , label = "Test observations"...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_quantile.html
    Tue Jul 01 15:59:35 UTC 2025
      140.9K bytes
      Cache
     
Back to top