Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 181 - 200 of 1,867 for test (0.21 sec)

  1. sklearn.gaussian_process.GaussianProcessClassif...

    {‘one_vs_rest’, ‘one_vs_one’}, default=’one_vs_rest’ Specifies...are ‘one_vs_rest’ and ‘one_vs_one’. In ‘one_vs_rest’, one binary...
    scikit-learn.org/stable/modules/generated/sklearn.gaussian_process.GaussianProcessClassifier.html
    Fri Apr 26 16:41:50 UTC 2024
      59.6K bytes
      Cache
     
  2. Linear Regression Example — scikit-learn 1.4.2 ...

    scatter ( diabetes_X_test , diabetes_y_test , color = "black" )...Split the data into training/testing sets diabetes_X_train = diabetes_X...
    scikit-learn.org/stable/auto_examples/linear_model/plot_ols.html
    Fri Apr 26 16:41:50 UTC 2024
      27.1K bytes
      Cache
     
  3. Shrinkage covariance estimation: LedoitWolf vs ...

    coloring_matrix ) X_test = np . dot ( base_X_test , coloring_matrix...ymin , - cv . best_estimator_ . score ( X_test ), color = "cyan"...
    scikit-learn.org/stable/auto_examples/covariance/plot_covariance_estimation.html
    Fri Apr 26 16:41:50 UTC 2024
      45K bytes
      Cache
     
  4. gtm.js

    type="text/javascript";n.id=h.id;n.text=h.text||h.textCo...e=window.document.location.hostname;io.test(e)||ho.test(e)||a.push("none");return...
    www.googletagmanager.com/gtm.js
    Sat Apr 27 00:00:00 UTC 2024
      229.7K bytes
      1 views
     
  5. 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
    Fri Apr 26 16:41:51 UTC 2024
      61.3K 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
    Fri Apr 26 16:41:50 UTC 2024
      38.8K bytes
      2 views
      Cache
     
  7. Dimensionality Reduction with Neighborhood Comp...

    train/test X_train , X_test , y_train , y_test = train_test_split...( model . transform ( X_test ), y_test ) # Embed the data set...
    scikit-learn.org/stable/auto_examples/neighbors/plot_nca_dim_reduction.html
    Fri Apr 26 16:41:51 UTC 2024
      35.2K bytes
      Cache
     
  8. 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
    Fri Apr 26 16:41:50 UTC 2024
      34.8K bytes
      Cache
     
  9. 8.3. Parallelism, resource management, and conf...

    sure that test results are independent of the test execution...run all tests with different seeds while keeping the test duration...
    scikit-learn.org/stable/computing/parallelism.html
    Fri Apr 26 16:41:50 UTC 2024
      42.4K bytes
      Cache
     
  10. Release Highlights for scikit-learn 0.22 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...plot_roc_curve(svc, X_test, y_test) # rfc_disp = plot_roc_curve(rfc, X_test, y_test,...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_22_0.html
    Fri Apr 26 16:41:48 UTC 2024
      73.8K bytes
      Cache
     
  11. sklearn.model_selection.cross_validate — scikit...

    this dict are: test_score The score array for test scores on each..._score in test_score changes to a specific metric like test_r2 or...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.cross_validate.html
    Fri Apr 26 16:41:50 UTC 2024
      43.1K bytes
      Cache
     
  12. Elasticsearch Resiliency Status | Elastic

    designed to test distributed systems. It is not a single test and is...writes to our testing framework. As the Jepsen tests evolve, we...
    www.elastic.co/guide/en/elasticsearch/resilienc...
    Mon Dec 11 22:11:20 UTC 2023
      85.9K bytes
      Cache
     
  13. sklearn.covariance.OAS — scikit-learn 1.4.2 doc...

    score (X_test[, y]) Compute the log-likelihood of X_test under the...: X_test array-like of shape (n_samples, n_features) Test data...
    scikit-learn.org/stable/modules/generated/sklearn.covariance.OAS.html
    Fri Apr 26 16:41:50 UTC 2024
      50.1K bytes
      Cache
     
  14. Multiclass Receiver Operating Characteristic (R...

    X_test , y_train , y_test , ) = train_test_split ( X...( X_test ) One-vs-Rest multiclass ROC The One-vs-the-Rest (OvR)...
    scikit-learn.org/stable/auto_examples/model_selection/plot_roc.html
    Fri Apr 26 16:41:50 UTC 2024
      85.1K bytes
      Cache
     
  15. sklearn.model_selection.StratifiedShuffleSplit ...

    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
    Fri Apr 26 16:41:50 UTC 2024
      32.3K bytes
      Cache
     
  16. 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
    Fri Apr 26 16:41:51 UTC 2024
      41K bytes
      Cache
     
  17. 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
    Fri Apr 26 16:41:51 UTC 2024
      60.4K bytes
      Cache
     
  18. Cross-validation on diabetes Dataset Exercise —...

    regularization Nested versus non-nested cross-validation Nested versus...lasso_cv . score ( X [ test ], y [ test ]) ) ) print () print...
    scikit-learn.org/stable/auto_examples/exercises/plot_cv_diabetes.html
    Fri Apr 26 16:41:48 UTC 2024
      36.8K bytes
      Cache
     
  19. sklearn.neighbors.NeighborhoodComponentsAnalysi...

    X_test , y_train , y_test = train_test_split ( X ,...print ( knn . score ( X_test , y_test )) 0.933333... >>> knn ....
    scikit-learn.org/stable/modules/generated/sklearn.neighbors.NeighborhoodComponentsAnalysis.html
    Fri Apr 26 16:41:50 UTC 2024
      55.6K bytes
      Cache
     
  20. sklearn.model_selection.GroupShuffleSplit — sci...

    f " Test: index= { test_index } , group= { groups [ test_index...indices for that split. test ndarray The testing set indices for that...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.GroupShuffleSplit.html
    Fri Apr 26 16:41:50 UTC 2024
      39.2K bytes
      Cache
     
Back to top