Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 41 - 50 of 420 for tests (0.08 sec)

  1. Lagged features for time series forecasting — s...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.2 , random_state = 42 )...
    scikit-learn.org/stable/auto_examples/applications/plot_time_series_lagged_features.html
    Wed Oct 30 20:01:23 UTC 2024
      156K bytes
      Cache
     
  2. StratifiedGroupKFold — scikit-learn 1.5.2 docum...

    print ( f " Test: index= { test_index } " ) ... print...indices for that split. test ndarray The testing set indices for that...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.StratifiedGroupKFold.html
    Wed Oct 30 20:01:23 UTC 2024
      128.4K bytes
      Cache
     
  3. 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
    Wed Oct 30 20:01:21 UTC 2024
      100.4K bytes
      Cache
     
  4. TimeSeriesSplit — scikit-learn 1.5.2 documentation

    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
    Wed Oct 30 20:01:23 UTC 2024
      128.3K bytes
      2 views
      Cache
     
  5. 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
    Wed Oct 30 20:01:21 UTC 2024
      107.5K bytes
      Cache
     
  6. Multi-class AdaBoosted Decision Trees — scikit-...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...the remaining 30 percent for testing. from sklearn.model_selection...
    scikit-learn.org/stable/auto_examples/ensemble/plot_adaboost_multiclass.html
    Wed Oct 30 20:01:21 UTC 2024
      110.7K bytes
      Cache
     
  7. ShuffleSplit — scikit-learn 1.5.2 documentation

    print ( f " Test: index= { test_index } " ) Fold 0: Train:...4] Test: index=[5 2] Fold 1: Train: index=[4 0 2 5] Test: index=[1...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.ShuffleSplit.html
    Wed Oct 30 20:01:21 UTC 2024
      122.8K bytes
      Cache
     
  8. Multiclass sparse logistic regression on 20newg...

    X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) accuracy = np . sum ( y_pred == y_test ) / y_test...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sparse_logistic_regression_20newsgroups.html
    Wed Oct 30 20:01:21 UTC 2024
      101.2K bytes
      Cache
     
  9. Probability Calibration curves — scikit-learn 1...

    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_calibration_curve.html
    Wed Oct 30 20:01:23 UTC 2024
      138.3K bytes
      Cache
     
  10. StratifiedShuffleSplit — scikit-learn 1.5.2 doc...

    Provides train/test indices to split data in train/test sets. This..." ) ... print ( f " Test: index= { test_index } " ) Fold 0: Train:...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.StratifiedShuffleSplit.html
    Wed Oct 30 20:01:23 UTC 2024
      121K bytes
      Cache
     
Back to top