Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 31 - 40 of 416 for tests (0.1 sec)

  1. 10. Common pitfalls and recommended practices —...

    X_test , y_train , y_test = train_test_split ( ......X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/common_pitfalls.html
    Tue Apr 30 16:14:29 UTC 2024
      83K bytes
      Cache
     
  2. Kernel PCA — scikit-learn 1.4.2 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 Apr 30 16:14:29 UTC 2024
      44.1K bytes
      Cache
     
  3. sklearn.model_selection.PredefinedSplit — sciki...

    Provides train/test indices to split data into train/test sets using...The entry test_fold[i] represents the index of the test set that...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.PredefinedSplit.html
    Tue Apr 30 16:14:28 UTC 2024
      26.6K bytes
      Cache
     
  4. Introducing the set_output API — scikit-learn 1...

    X_test , y_train , y_test = train_test_split ( X ,...X_train ) X_test_scaled = scaler . transform ( X_test ) X_test_scaled...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_set_output.html
    Tue Apr 30 16:14:29 UTC 2024
      77K bytes
      Cache
     
  5. 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 Apr 30 16:14:29 UTC 2024
      50K bytes
      Cache
     
  6. sklearn.model_selection.TimeSeriesSplit — sciki...

    in train/test sets. In each split, test indices must be...n_splits=5, test_size=None) >>> for i , ( train_index , test_index...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html
    Tue Apr 30 16:14:29 UTC 2024
      38.8K bytes
      2 views
      Cache
     
  7. Gradient Boosting regularization — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test )): test_deviance [ i ] = 2 * log_loss ( y_test , y_proba...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_regularization.html
    Tue Apr 30 16:14:29 UTC 2024
      32.8K bytes
      Cache
     
  8. Gradient Boosting Out-of-Bag estimates — scikit...

    X_test , y_train , y_test = train_test_split ( X ,...for test data test_score = heldout_score ( clf , X_test , y_test...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_oob.html
    Tue Apr 30 16:14:29 UTC 2024
      48.8K bytes
      Cache
     
  9. Face completion with a multi-output estimators ...

    randint ( test . shape [ 0 ], size = ( n_faces ,)) test = test [ face_ids...2 :] X_test = test [:, : ( n_pixels + 1 ) // 2 ] y_test = test...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_multioutput_face_completion.html
    Tue Apr 30 16:14:29 UTC 2024
      36.4K bytes
      Cache
     
  10. Putting it all together — scikit-learn 1.4.2 do...

    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/tutorial/statistical_inference/putting_together.html
    Tue Apr 30 16:14:28 UTC 2024
      45.3K bytes
      1 views
      Cache
     
Back to top