Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 21 - 40 of 796 for test (0.12 sec)

  1. Test with permutations the significance of a cl...

    Permutation test score Next, we calculate the permutation_test_score...us if you use the software. Test with permutations the significance...
    scikit-learn.org/stable/auto_examples/model_selection/plot_permutation_tests_for_classification.html
    Wed Mar 27 16:42:10 UTC 2024
      37.3K bytes
      Cache
     
  2. sklearn.model_selection.train_test_split — scik...

    X_test , y_train , y_test = train_test_split ( ......sklearn.model_selection .train_test_split train_test_split Examples using...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.train_test_split.html
    Wed Mar 27 16:42:11 UTC 2024
      60.2K bytes
      Cache
     
  3. Comparison of F-test and mutual information — s...

    univariate F-tests statistics and mutual information. As F-test captures...( 1000 ) f_test , _ = f_regression ( X , y ) f_test /= np . max...
    scikit-learn.org/stable/auto_examples/feature_selection/plot_f_test_vs_mi.html
    Wed Mar 27 16:42:10 UTC 2024
      28.8K bytes
      Cache
     
  4. cross_validation.rst.txt

    available data as a **test set** ``X_test, y_test``. Note that the...>>> X_train, X_test, y_train, y_test = train_test_split( ... X,...
    scikit-learn.org/stable/_sources/modules/cross_validation.rst.txt
    Wed Mar 27 16:42:11 UTC 2024
      39.9K bytes
      6 views
     
  5. sklearn.model_selection.KFold — scikit-learn 1....

    estimates Nested versus non-nested cross-validation Nested versus...Provides train/test indices to split data in train/test sets. Split...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.KFold.html
    Wed Mar 27 16:42:11 UTC 2024
      34.1K bytes
      Cache
     
  6. sklearn.discriminant_analysis.QuadraticDiscrimi...

    classification on an array of test vectors X. predict_log_proba...the mean accuracy on the given test data and labels. set_params...
    scikit-learn.org/stable/modules/generated/sklearn.discriminant_analysis.QuadraticDiscriminantAnal...
    Wed Mar 27 16:42:11 UTC 2024
      54.4K bytes
      Cache
     
  7. 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
    Wed Mar 27 16:42:10 UTC 2024
      59.6K bytes
      Cache
     
  8. sklearn.svm.SVC — scikit-learn 1.4.1 documentation

    cross-validation Nested versus non-nested cross-validation Nested versus...following example: Nested versus non-nested cross-validation Read...
    scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html
    Wed Mar 27 16:42:10 UTC 2024
      92.1K bytes
      Cache
     
  9. sklearn.multiclass.OutputCodeClassifier — sciki...

    the mean accuracy on the given test data and labels. set_params...the mean accuracy on the given test data and labels. In multi-label...
    scikit-learn.org/stable/modules/generated/sklearn.multiclass.OutputCodeClassifier.html
    Wed Mar 27 16:42:11 UTC 2024
      44.6K bytes
      Cache
     
  10. 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
    Wed Mar 27 16:42:11 UTC 2024
      38.8K bytes
      2 views
      Cache
     
  11. 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
    Wed Mar 27 16:42:11 UTC 2024
      34.8K bytes
      Cache
     
  12. sklearn.dummy.DummyClassifier — scikit-learn 1....

    n_features) Test samples. Passing None as test samples gives...(X) Perform classification on test vectors X. predict_log_proba...
    scikit-learn.org/stable/modules/generated/sklearn.dummy.DummyClassifier.html
    Wed Mar 27 16:42:11 UTC 2024
      53.7K bytes
      Cache
     
  13. feature_selection.rst.txt

    the best features based on univariate statistical tests. It can...we can use a F-test to retrieve the two best features for a dataset...
    scikit-learn.org/stable/_sources/modules/feature_selection.rst.txt
    Wed Mar 27 16:42:11 UTC 2024
      14.3K bytes
      1 views
     
  14. 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
    Wed Mar 27 16:42:11 UTC 2024
      32.3K bytes
      Cache
     
  15. sklearn.model_selection.StratifiedGroupKFold — ...

    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 Mar 27 16:42:10 UTC 2024
      41K bytes
      Cache
     
  16. Model selection: choosing estimators and their ...

    X_digits [ test ], y_digits [ test ]) ... for train , test in k_fold..., y_train ) . score ( X_test , y_test )) >>> print ( scores )...
    scikit-learn.org/stable/tutorial/statistical_inference/model_selection.html
    Tue Mar 26 15:09:55 UTC 2024
      49.6K bytes
      Cache
     
  17. 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
    Wed Mar 27 16:42:11 UTC 2024
      39.2K bytes
      Cache
     
  18. sklearn.model_selection.RepeatedStratifiedKFold...

    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
    Wed Mar 27 16:42:11 UTC 2024
      31K bytes
      Cache
     
  19. sklearn.metrics.class_likelihood_ratios — sciki...

    obtain post-test probabilities given a pre-test probability....classifier being a diagnostic test; the pre-test probability of an individual...
    scikit-learn.org/stable/modules/generated/sklearn.metrics.class_likelihood_ratios.html
    Wed Mar 27 16:42:10 UTC 2024
      28.7K bytes
      Cache
     
  20. sklearn.covariance.EllipticEnvelope — scikit-le...

    the mean accuracy on the given test data and labels. score_samples...the mean accuracy on the given test data and labels. In multi-label...
    scikit-learn.org/stable/modules/generated/sklearn.covariance.EllipticEnvelope.html
    Wed Mar 27 16:42:11 UTC 2024
      66.3K bytes
      Cache
     
Back to top