Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 71 - 80 of 646 for tests (0.11 sec)

  1. Post-hoc tuning the cut-off point of decision f...

    value_counts () class tested_negative 500 tested_positive 268 Name:..."train_accuracy" , "test_accuracy" , "train_balanced_accuracy" , "test_balanced_accuracy"...
    scikit-learn.org/stable/auto_examples/model_selection/plot_tuned_decision_threshold.html
    Tue Jun 11 18:07:58 UTC 2024
      123.2K bytes
      Cache
     
  2. Confusion matrix — scikit-learn 1.5.0 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
    Tue Jun 11 18:07:59 UTC 2024
      88.7K bytes
      Cache
     
  3. 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
    Tue Jun 11 18:07:59 UTC 2024
      101.6K bytes
      Cache
     
  4. 6.3. Preprocessing data — scikit-learn 1.5.0 do...

    X_test , y_train , y_test = train_test_split ( X ,...score ( X_test , y_test ) # apply scaling on testing data, without...
    scikit-learn.org/stable/modules/preprocessing.html
    Tue Jun 11 18:07:58 UTC 2024
      205.2K bytes
      Cache
     
  5. Curve Fitting with Bayesian Ridge Regression — ...

    increasing = True ) X_test = np . vander ( x_test , n_order + 1 , increasing...predict ( X_test , return_std = True ) ax . plot ( x_test , func (...
    scikit-learn.org/stable/auto_examples/linear_model/plot_bayesian_ridge_curvefit.html
    Tue Jun 11 18:07:59 UTC 2024
      97.5K bytes
      Cache
     
  6. FixedThresholdClassifier — scikit-learn 1.5.0 d...

    X_test , y_train , y_test = train_test_split ( ......confusion_matrix ( y_test , classifier . predict ( X_test ))) [[217 7]...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.FixedThresholdClassifier.html
    Tue Jun 11 18:07:59 UTC 2024
      146.9K bytes
      Cache
     
  7. ShrunkCovariance — scikit-learn 1.5.0 documenta...

    : 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.ShrunkCovariance.html
    Tue Jun 11 18:07:58 UTC 2024
      142.1K bytes
      Cache
     
  8. Robust linear estimator fitting — scikit-learn ...

    sin ( X_test ) X_test = X_test [:, np . newaxis ] y_errors...newaxis ] X_test = np . random . normal ( size = 200 ) y_test = np ....
    scikit-learn.org/stable/auto_examples/linear_model/plot_robust_fit.html
    Tue Jun 11 18:07:58 UTC 2024
      101.2K bytes
      Cache
     
  9. Gaussian processes on discrete data structures ...

    ) X_test = [ "AAA" , "ATAG" , "CTC" , "CT" , "C" ] Y_test = [...len ( X_test )), [ 1.0 if c else - 1.0 for c in Y_test ], s =...
    scikit-learn.org/stable/auto_examples/gaussian_process/plot_gpr_on_structured_data.html
    Tue Jun 11 18:07:58 UTC 2024
      119.6K bytes
      Cache
     
  10. 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
    Tue Jun 11 18:07:59 UTC 2024
      90.1K bytes
      Cache
     
Back to top