Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 101 - 110 of 556 for tests (0.1 sec)

  1. 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
    Thu May 16 17:15:47 UTC 2024
      38.8K bytes
      2 views
      Cache
     
  2. 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
    Thu May 16 17:15:45 UTC 2024
      48.8K bytes
      Cache
     
  3. 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
    Thu May 16 17:15:45 UTC 2024
      32.8K bytes
      Cache
     
  4. Custom refit strategy of a grid search with cro...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split..., "mean_test_recall" , "std_test_recall" , "mean_test_precision"...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_digits.html
    Thu May 16 17:15:46 UTC 2024
      60.4K bytes
      Cache
     
  5. Comparison of kernel ridge regression and SVR —...

    train_time = [] test_time = [] for train_test_size in sizes :...fit ( X [: train_test_size ], y [: train_test_size ]) train_time...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_kernel_ridge_regression.html
    Thu May 16 17:15:45 UTC 2024
      59.7K bytes
      Cache
     
  6. sklearn.model_selection.ShuffleSplit — scikit-l...

    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
    Thu May 16 17:15:46 UTC 2024
      34.8K bytes
      Cache
     
  7. Release Highlights for scikit-learn 0.23 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...score ( X_test , y_test )) print ( gbdt . score ( X_test , y_test...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_23_0.html
    Thu May 16 17:15:45 UTC 2024
      81.1K bytes
      Cache
     
  8. L1-based models for Sparse Signals — scikit-lea...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.5 , shuffle = False ) In...
    scikit-learn.org/stable/auto_examples/linear_model/plot_lasso_and_elasticnet.html
    Thu May 16 17:15:45 UTC 2024
      61.3K bytes
      Cache
     
  9. MNIST classification using multinomial logistic...

    X_test , y_train , y_test = train_test_split ( X ,...( X_train ) X_test = scaler . transform ( X_test ) # Turn up tolerance...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sparse_logistic_regression_mnist.html
    Thu May 16 17:15:45 UTC 2024
      33.4K bytes
      Cache
     
  10. 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
    Thu May 16 17:15:45 UTC 2024
      48.4K bytes
      1 views
      Cache
     
Back to top