Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 41 - 50 of 410 for tests (0.09 sec)

  1. 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
    Tue May 28 11:51:33 UTC 2024
      121.8K bytes
      Cache
     
  2. KFold — scikit-learn 1.5.0 documentation

    Provides train/test indices to split data in train/test sets. Split..." ) ... print ( f " Test: index= { test_index } " ) Fold 0: Train:...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.KFold.html
    Tue May 28 11:51:32 UTC 2024
      129.2K bytes
      Cache
     
  3. 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
    Tue May 28 11:51:34 UTC 2024
      154.9K bytes
      Cache
     
  4. 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 May 28 11:51:32 UTC 2024
      123.2K bytes
      Cache
     
  5. 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 May 28 11:51:33 UTC 2024
      101.6K bytes
      Cache
     
  6. 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 May 28 11:51:33 UTC 2024
      205.2K bytes
      Cache
     
  7. 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 May 28 11:51:32 UTC 2024
      146.9K bytes
      Cache
     
  8. 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 May 28 11:51:34 UTC 2024
      142.1K bytes
      Cache
     
  9. 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 May 28 11:51:34 UTC 2024
      101.2K bytes
      Cache
     
  10. 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 May 28 11:51:33 UTC 2024
      119.6K bytes
      Cache
     
Back to top