Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 241 - 260 of 871 for test (0.31 sec)

  1. Out-of-core classification of text documents — ...

    - tick test_stats [ "n_test" ] += len ( y_test ) test_stats [...%(n_test)6d test docs ( %(n_test_pos)6d positive) " % test_stats...
    scikit-learn.org/stable/auto_examples/applications/plot_out_of_core_classification.html
    Thu Mar 28 16:05:57 UTC 2024
      98.4K bytes
      Cache
     
  2. sklearn.cross_decomposition.PLSRegression — sci...

    n_features) Test samples. For some estimators...y_true.mean()) ** 2).sum() . The best possible score is 1.0 and it...
    scikit-learn.org/stable/modules/generated/sklearn.cross_decomposition.PLSRegression.html
    Thu Mar 28 16:05:58 UTC 2024
      75.7K bytes
      Cache
     
  3. sklearn.impute.IterativeImputer — scikit-learn ...

    missing values at transform/test time. keep_empty_features bool,...simple estimators as well as on nested objects (such as Pipeline )....
    scikit-learn.org/stable/modules/generated/sklearn.impute.IterativeImputer.html
    Thu Mar 28 16:05:58 UTC 2024
      61.8K bytes
      Cache
     
  4. Sample pipeline for text feature extraction and...

    ) data_test = fetch_20newsgroups ( subset = "test" , categories...vect__norm: l1 test_accuracy = random_search . score ( data_test . data...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_text_feature_extraction.html
    Thu Mar 28 16:05:57 UTC 2024
      91.7K bytes
      Cache
     
  5. Nested versus non-nested cross-validation — sci...

    ) non_nested_scores [ i ] = clf . best_score_ # Nested CV with...[ non_nested_scores_line , nested_line ], [ "Non-Nested CV" ,...
    scikit-learn.org/stable/auto_examples/model_selection/plot_nested_cross_validation_iris.html
    Thu Mar 28 16:05:57 UTC 2024
      39.5K bytes
      Cache
     
  6. Working With Text Data — scikit-learn 1.4.1 doc...

    >>> docs_test = twenty_test . data >>> predicted = text_clf . predict...object’s best_score_ and best_params_ attributes store the best mean...
    scikit-learn.org/stable/tutorial/text_analytics/working_with_text_data.html
    Thu Mar 28 16:05:58 UTC 2024
      64.6K bytes
      Cache
     
  7. sklearn.linear_model.MultiTaskLasso — scikit-le...

    n_features) Test samples. For some estimators...y_true.mean()) ** 2).sum() . The best possible score is 1.0 and it...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.MultiTaskLasso.html
    Thu Mar 28 16:05:59 UTC 2024
      69.7K bytes
      Cache
     
  8. Statistical comparison of models using grid sea...

    "rank_test_score" , "mean_test_score" , "std_test_score" ]]...params rank_test_score mean_test_score std_test_score kernel...
    scikit-learn.org/stable/auto_examples/model_selection/plot_grid_search_stats.html
    Thu Mar 28 16:05:59 UTC 2024
      115.7K bytes
      Cache
     
  9. 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
    Thu Mar 28 16:05:59 UTC 2024
      50K bytes
      Cache
     
  10. Kernel PCA — scikit-learn 1.4.1 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
    Thu Mar 28 16:05:57 UTC 2024
      44.1K bytes
      Cache
     
  11. slashdotMain

    conducting real-world tests, independently evaluating AI,...for companies interested in testing autonomous vehicles on its...
    rss.slashdot.org/Slashdot/slashdotMain
    Fri Mar 29 01:08:25 UTC 2024
      56.7K bytes
     
  12. 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
    Thu Mar 28 16:05:59 UTC 2024
      45K bytes
      Cache
     
  13. 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
    Thu Mar 28 16:05:57 UTC 2024
      73.8K bytes
      Cache
     
  14. Linear Regression Example — scikit-learn 1.4.1 ...

    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
    Thu Mar 28 16:05:59 UTC 2024
      27.1K bytes
      Cache
     
  15. 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
    Thu Mar 28 16:05:58 UTC 2024
      36.8K bytes
      Cache
     
  16. Comparing Random Forests and Histogram Gradient...

    significant improvement of the testing score. Plot results We can...elapsed computing time and mean test score. Passing the cursor over...
    scikit-learn.org/stable/auto_examples/ensemble/plot_forest_hist_grad_boosting_comparison.html
    Thu Mar 28 16:05:58 UTC 2024
      61.3K bytes
      Cache
     
  17. 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 Mar 28 16:05:59 UTC 2024
      59.7K bytes
      Cache
     
  18. Time-related feature engineering — scikit-learn...

    test_0 = all_splits [ 0 ] X . iloc [ test_0 ] season...train_4 , test_4 = all_splits [ 4 ] X . iloc [ test_4 ] season...
    scikit-learn.org/stable/auto_examples/applications/plot_cyclical_feature_engineering.html
    Thu Mar 28 16:05:57 UTC 2024
      151.8K bytes
      Cache
     
  19. 6.1. Pipelines and composite estimators — sciki...

    X_test , y_train , y_test = train_test_split ( X ,...format ( regr . score ( X_test , y_test ))) R2 score: 0.61 >>> raw_target_regr...
    scikit-learn.org/stable/modules/compose.html
    Thu Mar 28 16:05:58 UTC 2024
      90.1K bytes
      Cache
     
  20. 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 Mar 28 16:05:59 UTC 2024
      60.4K bytes
      Cache
     
Back to top