Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 341 - 360 of 889 for test (0.18 sec)

  1. RBF SVM parameters — scikit-learn 1.5.0 documen...

    best_params_ , grid . best_score_ ) ) The best parameters...and just applying it on the test set. from sklearn.preprocessing...
    scikit-learn.org/stable/auto_examples/svm/plot_rbf_parameters.html
    Wed May 22 15:20:05 UTC 2024
      118.3K bytes
      Cache
     
  2. Comparison between grid search and successive h...

    is_sh : # SH dataframe: get mean_test_score values for the highest...= "param_C" , values = "mean_test_score" , aggfunc = "last" ,...
    scikit-learn.org/stable/auto_examples/model_selection/plot_successive_halving_heatmap.html
    Wed May 22 15:20:07 UTC 2024
      105.2K bytes
      Cache
     
  3. Ordinary Least Squares and Ridge Regression Var...

    plot ( X_test , clf . predict ( X_test ), color = "gray"...) ax . plot ( X_test , clf . predict ( X_test ), linewidth = 2...
    scikit-learn.org/stable/auto_examples/linear_model/plot_ols_ridge_variance.html
    Wed May 22 15:20:10 UTC 2024
      90.1K bytes
      Cache
     
  4. Feature discretization — scikit-learn 1.5.0 doc...

    training and test part X_train , X_test , y_train , y_test = train_test_split...and testing points ax . scatter ( X_test [:, 0 ], X_test [:,...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_discretization_classification.html
    Wed May 22 15:20:05 UTC 2024
      127.4K bytes
      Cache
     
  5. MultiTaskLassoCV — scikit-learn 1.5.0 documenta...

    test) splits as arrays of indices....n_folds) Mean square error for the test set on each fold, varying alpha....
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.MultiTaskLassoCV.html
    Wed May 22 15:20:05 UTC 2024
      167.8K bytes
      Cache
     
  6. Pipeline ANOVA SVM — scikit-learn 1.5.0 documen...

    X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) print ( classification_report ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/feature_selection/plot_feature_selection_pipeline.html
    Wed May 22 15:20:07 UTC 2024
      105.7K bytes
      Cache
     
  7. sitemap-news

    health/health-news/fentanyl-test-strips-used-by-drug-dealers...Newsen2024-05-22T16:30:00.000ZFentanyl test strips are being used by drug...
    www.nbcnews.com/sitemap/nbcnews/sitemap-news
    Thu May 23 00:48:28 UTC 2024
      131.5K bytes
      2 views
     
  8. Partial Dependence and Individual Conditional E...

    ( f "Test R2 score: { mlp_model . score ( X_test , y_test ) :...f "Test R2 score: { hgbdt_model . score ( X_test , y_test ) :...
    scikit-learn.org/stable/auto_examples/inspection/plot_partial_dependence.html
    Wed May 22 15:20:07 UTC 2024
      198.5K bytes
      Cache
     
  9. Comparison of Calibration of Classifiers — scik...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , n_bins = 10 , name = name...
    scikit-learn.org/stable/auto_examples/calibration/plot_compare_calibration.html
    Wed May 22 15:20:05 UTC 2024
      115.1K bytes
      Cache
     
  10. RandomForestRegressor — scikit-learn 1.5.0 docu...

    max_leaf_nodes in best-first fashion. Best nodes are defined...shape (n_samples, n_features) Test samples. For some estimators...
    scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestRegressor.html
    Wed May 22 15:20:10 UTC 2024
      178K bytes
      Cache
     
  11. Version 0.13 — scikit-learn 1.5.0 documentation

    train_test_split being interpreted as a test by Yaroslav...Changed default test_size in cross_validation.train_test_split to None,...
    scikit-learn.org/stable/whats_new/v0.13.html
    Wed May 22 15:20:05 UTC 2024
      76.8K bytes
      Cache
     
  12. Scalable learning with polynomial kernel approx...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , train_size = 5_000 , test_size = 10_000...
    scikit-learn.org/stable/auto_examples/kernel_approximation/plot_scalable_poly_kernels.html
    Wed May 22 15:20:10 UTC 2024
      114.5K bytes
      Cache
     
  13. SVM Exercise — scikit-learn 1.5.0 documentation

    out the test data plt . scatter ( X_test [:, 0 ], X_test [:, 1...n_sample )] X_test = X [ int ( 0.9 * n_sample ) :] y_test = y [ int...
    scikit-learn.org/stable/auto_examples/exercises/plot_iris_exercise.html
    Wed May 22 15:20:10 UTC 2024
      95.7K bytes
      Cache
     
  14. Sean ‘Diddy’ Combs issues apology after release...

    historic site 02:22 Despite testing, fentanyl is often undetected...historic site 02:22 Despite testing, fentanyl is often undetected...
    www.nbcnews.com/nightly-news/video/sean-diddy-combs-issues-apology-after-release-of-video-that-ap...
    Wed May 22 00:52:49 UTC 2024
      946.4K bytes
      Cache
     
  15. 11.1. Array API support (experimental) — scikit...

    train_test_split Coverage is expected to...checks as part of the common tests to verify that the estimators...
    scikit-learn.org/stable/modules/array_api.html
    Wed May 22 15:20:10 UTC 2024
      55.3K bytes
      Cache
     
  16. Developing scikit-learn estimators — scikit-lea...

    _skip_test (default=False) whether to skip common tests entirely....X_train , y_train ) . predict ( X_test ) Depending on the nature of...
    scikit-learn.org/stable/developers/develop.html
    Wed May 22 15:20:07 UTC 2024
      119.5K bytes
      Cache
     
  17. Probability Calibration for 3-class classificat...

    y [: 1000 ] X_test , y_test = X [ 1000 :], y [ 1000...log_loss ( y_test , clf_probs ) cal_score = log_loss ( y_test , cal_clf_probs...
    scikit-learn.org/stable/auto_examples/calibration/plot_calibration_multiclass.html
    Wed May 22 15:20:05 UTC 2024
      161.9K bytes
      Cache
     
  18. Isotonic Regression — scikit-learn 1.5.0 docume...

    plot ( x_test , ir . predict ( x_test ), "C1-" ) ax1 ....noisy data (n= %d )" % n ) x_test = np . linspace ( - 10 , 110...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_isotonic_regression.html
    Wed May 22 15:20:05 UTC 2024
      107.5K bytes
      Cache
     
  19. LarsCV — scikit-learn 1.5.0 documentation

    test) splits as arrays of indices....shape (n_samples, n_features) Test samples. For some estimators...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.LarsCV.html
    Wed May 22 15:20:08 UTC 2024
      148.1K bytes
      Cache
     
  20. 7.2. Real world datasets — scikit-learn 1.5.0 d...

    newsgroups_test = fetch_20newsgroups ( subset = 'test' , ... categories...vectors_test = vectorizer . transform ( newsgroups_test . data...
    scikit-learn.org/stable/datasets/real_world.html
    Wed May 22 15:20:05 UTC 2024
      105K bytes
      Cache
     
Back to top