Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 241 - 250 of 931 for tests (0.16 sec)

  1. Non-negative least squares — scikit-learn 1.6.1...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.5 ) Fit the Non-Negative...
    scikit-learn.org/stable/auto_examples/linear_model/plot_nnls.html
    Tue Feb 04 08:40:45 UTC 2025
      93.3K bytes
      Cache
     
  2. 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 Feb 04 08:40:45 UTC 2025
      90.1K bytes
      Cache
     
  3. Principal Component Regression vs Partial Least...

    X_test , y_train , y_test = train_test_split ( X ,...scatter ( pca . transform ( X_test ), y_test , alpha = 0.3 , label =...
    scikit-learn.org/stable/auto_examples/cross_decomposition/plot_pcr_vs_pls.html
    Tue Feb 04 08:40:45 UTC 2025
      112.7K bytes
      Cache
     
  4. Single estimator versus bagging: bias-variance ...

    ( y ) X_test , y_test = generate ( n_samples = n_test , noise...training set n_test = 1000 # Size of the test set noise = 0.1...
    scikit-learn.org/stable/auto_examples/ensemble/plot_bias_variance.html
    Tue Feb 04 08:40:45 UTC 2025
      115.7K bytes
      Cache
     
  5. ComplementNB — scikit-learn 1.6.1 documentation

    classification on an array of test vectors X. Parameters : X array-like...probability estimates for the test vector X. For each row x of...
    scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.ComplementNB.html
    Tue Feb 04 08:40:43 UTC 2025
      153.8K bytes
      Cache
     
  6. Examples of Using FrozenEstimator — scikit-lear...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test )[:, 1 ] clf_score = brier_score_loss ( y_test , prob_pos_clf...
    scikit-learn.org/stable/auto_examples/frozen/plot_frozen_examples.html
    Tue Feb 04 08:40:45 UTC 2025
      100.9K bytes
      Cache
     
  7. Balance model complexity and cross-validated sc...

    "mean_test_score" ]) return ( cv_results [ "mean_test_score"...nts" ] test_scores = grid . cv_results_ [ "mean_test_score" ]...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_refit_callable.html
    Tue Feb 04 08:40:42 UTC 2025
      99.5K bytes
      Cache
     
  8. sklearn.model_selection — scikit-learn 1.7.dev0...

    train_test_split Split arrays or matrices...matrices into random train and test subsets. Hyper-parameter optimizers...
    scikit-learn.org/dev/api/sklearn.model_selection.html
    Fri Jan 10 17:03:58 UTC 2025
      129.4K bytes
      Cache
      Similar Results (1)
     
  9. RepeatedStratifiedKFold — scikit-learn 1.6.1 do...

    print ( f " Test: index= { test_index } " ) ... Fold...index=[1 2] Test: index=[0 3] Fold 1: Train: index=[0 3] Test: index=[1...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.RepeatedStratifiedKFold.html
    Tue Feb 04 08:40:43 UTC 2025
      121.6K bytes
      Cache
     
  10. AdaBoostClassifier — scikit-learn 1.6.1 documen...

    the mean accuracy on the given test data and labels. In multi-label...shape (n_samples, n_features) Test samples. y array-like of shape...
    scikit-learn.org/stable/modules/generated/sklearn.ensemble.AdaBoostClassifier.html
    Tue Feb 04 08:40:44 UTC 2025
      160.9K bytes
      Cache
     
Back to top