Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 281 - 300 of 1,178 for test (0.16 sec)

  1. GraphicalLasso — scikit-learn 1.5.0 documentation

    : X_test array-like of shape (n_samples, n_features) Test data...the observations. score ( X_test , y = None ) [source] # Compute...
    scikit-learn.org/stable/modules/generated/sklearn.covariance.GraphicalLasso.html
    Fri May 31 14:06:06 UTC 2024
      143.2K bytes
      Cache
     
  2. 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
    Fri May 31 14:06:04 UTC 2024
      147.5K bytes
      Cache
     
  3. Class Likelihood Ratios to measure classificati...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...the link between pre-test and post-test odds given by the Class...
    scikit-learn.org/stable/auto_examples/model_selection/plot_likelihood_ratios.html
    Fri May 31 14:06:06 UTC 2024
      137.7K bytes
      Cache
     
  4. Permutation Importance vs Random Forest Feature...

    X_test , y_train , y_test = train_test_split ( X ,...( f "RF test accuracy: { rf . score ( X_test , y_test ) : .3f...
    scikit-learn.org/stable/auto_examples/inspection/plot_permutation_importance.html
    Fri May 31 14:06:04 UTC 2024
      156.7K bytes
      Cache
     
  5. ROC Curve with Visualization API — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( svc , X_test , y_test ) plt . show () Training...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_roc_curve_visualization_api.html
    Fri May 31 14:06:06 UTC 2024
      104.2K bytes
      Cache
     
  6. CalibrationDisplay — scikit-learn 1.5.0 documen...

    X_test , y_train , y_test = train_test_split ( ......X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/modules/generated/sklearn.calibration.CalibrationDisplay.html
    Thu May 30 15:22:07 UTC 2024
      145.4K bytes
      Cache
     
  7. Plotting Learning Curves and Checking Models’ S...

    [ test_scores_nb , test_scores_svm ], [ naive_bayes...axis = 1 ), test_scores . mean ( axis = 1 ) - test_scores . std...
    scikit-learn.org/stable/auto_examples/model_selection/plot_learning_curve.html
    Fri May 31 14:06:06 UTC 2024
      110.8K bytes
      1 views
      Cache
     
  8. Common pitfalls in the interpretation of coeffi...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...predict ( X_test ) mae_test = median_absolute_error ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/inspection/plot_linear_model_coefficient_interpretation.html
    Fri May 31 14:06:04 UTC 2024
      273.8K bytes
      Cache
     
  9. PrecisionRecallDisplay — scikit-learn 1.5.0 doc...

    X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/modules/generated/sklearn.metrics.PrecisionRecallDisplay.html
    Fri May 31 14:06:07 UTC 2024
      153.3K bytes
      Cache
     
  10. Slashdot: News for nerds, stuff that matters

    source and give up the Morse Code test for ham radio licenses, Bruce...DDX drivers were fixed and tested to work again, as well as complete...
    slashdot.org/
    Sat Jun 01 01:13:30 UTC 2024
      177K bytes
      3 views
      Cache
     
  11. Importance of Feature Scaling — scikit-learn 1....

    X_test , y_train , y_test = train_test_split ( X ,...( X_test ) y_pred_scaled = scaled_clf . predict ( X_test ) y_proba...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_scaling_importance.html
    Fri May 31 14:06:06 UTC 2024
      121.8K bytes
      Cache
     
  12. One-class SVM with non-linear kernel (RBF) — sc...

    size n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...X_train ) y_pred_test = clf . predict ( X_test ) y_pred_outliers...
    scikit-learn.org/stable/auto_examples/svm/plot_oneclass.html
    Fri May 31 14:06:06 UTC 2024
      99.6K bytes
      Cache
     
  13. Target Encoder’s Internal Cross fitting — sciki...

    X_test , y_train , y_test = train_test_split ( X ,...score on test set: " , raw_model . score ( X_test , y_test )) Raw...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_target_encoder_cross_val.html
    Fri May 31 14:06:06 UTC 2024
      111.4K bytes
      Cache
     
  14. Classifier comparison — scikit-learn 1.5.0 docu...

    y_test = train_test_split ( X , y , test_size = 0.4 , random_state...the testing points ax . scatter ( X_test [:, 0 ], X_test [:,...
    scikit-learn.org/stable/auto_examples/classification/plot_classifier_comparison.html
    Fri May 31 14:06:06 UTC 2024
      113.4K bytes
      Cache
     
  15. Release Highlights for scikit-learn 1.4 — sciki...

    X_test , y_train , y_test = train_test_split ( X_adult...( "cv error on test sets:" , results [ "test_mse" ]) # Setting...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_4_0.html
    Fri May 31 14:06:06 UTC 2024
      154K bytes
      Cache
     
  16. Principal Component Regression vs Partial Least...

    X_test , y_train , y_test = train_test_split ( X ,...scatter ( pca . transform ( X_test ), y_test , alpha = 0.3 , label =...
    scikit-learn.org/stable/auto_examples/cross_decomposition/plot_pcr_vs_pls.html
    Fri May 31 14:06:06 UTC 2024
      112.2K bytes
      Cache
     
  17. Effect of varying threshold for self-training —...

    train_index ] X_test = X [ test_index ] y_test = y [ test_index ] y_test_true...y_test_true = y_true [ test_index ] self_training_clf . fit (...
    scikit-learn.org/stable/auto_examples/semi_supervised/plot_self_training_varying_threshold.html
    Fri May 31 14:06:06 UTC 2024
      101.6K bytes
      Cache
     
  18. 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
    Fri May 31 14:06:06 UTC 2024
      115.1K bytes
      Cache
     
  19. 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
    Fri May 31 14:06:06 UTC 2024
      105.2K bytes
      Cache
     
  20. Inside RFK Jr. VP pick Nicole Shanahan’s conspi...

    that Covid was a “compliance test” designed to keep people indoors,...
    www.nbcnews.com/politics/2024-election/nicole-shanahan-rfk-jr-vice-president-beliefs-rcna153535
    Fri May 24 00:52:39 UTC 2024
      355.8K bytes
      Cache
     
Back to top