Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 261 - 280 of 1,032 for test (0.17 sec)

  1. Pipeline ANOVA SVM — scikit-learn 1.4.2 documen...

    X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) print ( classification_report ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/feature_selection/plot_feature_selection_pipeline.html
    Thu May 09 23:01:25 UTC 2024
      43.3K bytes
      Cache
     
  2. Elastic SharePoint Online connector reference |...

    Connector testing for more details. To perform E2E testing for the...$ make ftest NAME=sharepoint_online For faster tests, add the...
    www.elastic.co/guide/en/enterprise-search/current/connectors-sharepoint-online.html
    Thu May 09 14:03:11 UTC 2024
      87.6K bytes
      Cache
     
  3. 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
    Thu May 09 23:01:25 UTC 2024
      42.4K bytes
      Cache
     
  4. 1.6. Nearest Neighbors — scikit-learn 1.4.2 doc...

    X_test , y_train , y_test = train_test_split ( X ,...( nca_pipe . score ( X_test , y_test )) 0.96190476... The plot...
    scikit-learn.org/stable/modules/neighbors.html
    Thu May 09 23:01:25 UTC 2024
      99.8K bytes
      Cache
     
  5. sklearn.metrics.PrecisionRecallDisplay — scikit...

    X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/modules/generated/sklearn.metrics.PrecisionRecallDisplay.html
    Thu May 09 23:01:25 UTC 2024
      59K bytes
      Cache
     
  6. Partial Dependence and Individual Conditional E...

    ( f "Test R2 score: { mlp_model . score ( X_test , y_test ) :...f "Test R2 score: { hgbdt_model . score ( X_test , y_test ) :...
    scikit-learn.org/stable/auto_examples/inspection/plot_partial_dependence.html
    Thu May 09 23:01:25 UTC 2024
      137K bytes
      Cache
     
  7. Importance of Feature Scaling — scikit-learn 1....

    X_test , y_train , y_test = train_test_split ( X ,...( X_test ) y_pred_scaled = scaled_clf . predict ( X_test ) y_proba...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_scaling_importance.html
    Thu May 09 23:01:25 UTC 2024
      59K bytes
      Cache
     
  8. SVM Exercise — scikit-learn 1.4.2 documentation

    out the test data plt . scatter ( X_test [:, 0 ], X_test [:, 1...n_sample )] X_test = X [ int ( 0.9 * n_sample ) :] y_test = y [ int...
    scikit-learn.org/stable/auto_examples/exercises/plot_iris_exercise.html
    Thu May 09 23:01:25 UTC 2024
      33K bytes
      Cache
     
  9. 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
    Thu May 09 23:01:25 UTC 2024
      32.3K bytes
      Cache
     
  10. 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
    Thu May 09 23:01:25 UTC 2024
      39.2K bytes
      Cache
     
  11. sklearn.model_selection.RandomizedSearchCV — sc...

    the attributes best_index_ , best_score_ and best_params_ will...param_gamma split0_test_score … rank_test_score ‘rbf’ 0.1 0.80...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.RandomizedSearchCV.html
    Thu May 09 23:01:25 UTC 2024
      82.6K bytes
      Cache
     
  12. Elastic SharePoint Server connector reference |...

    Connector testing for more details. To perform E2E testing for the...$ make ftest NAME=sharepoint_server For faster tests, add the...
    www.elastic.co/guide/en/enterprise-search/current/connectors-sharepoint.html
    Thu May 09 14:03:11 UTC 2024
      31.4K bytes
      Cache
     
  13. 7.4. Loading other datasets — scikit-learn 1.4....

    X_test , y_test = load_svmlight_files (...number of features: >>> X_test , y_test = load_svmlight_file ( ......
    scikit-learn.org/stable/datasets/loading_other_datasets.html
    Thu May 09 23:01:25 UTC 2024
      44.9K bytes
      Cache
     
  14. Detection error tradeoff (DET) curve — scikit-l...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , ax = ax_roc , name = name...
    scikit-learn.org/stable/auto_examples/model_selection/plot_det.html
    Thu May 09 23:01:25 UTC 2024
      33.6K bytes
      Cache
     
  15. 11.1. Array API support (experimental) — scikit...

    train_test_split Coverage is expected to...checks as part of the common tests to verify that the estimators...
    scikit-learn.org/stable/modules/array_api.html
    Thu May 09 23:01:24 UTC 2024
      31.9K bytes
      Cache
     
  16. sklearn.datasets.load_svmlight_files — scikit-l...

    matrix X_test, it is essential that X_train and X_test have the...features (X_train.shape[1] == X_test.shape[1]). This may not be the...
    scikit-learn.org/stable/modules/generated/sklearn.datasets.load_svmlight_files.html
    Thu May 09 23:01:25 UTC 2024
      19.4K bytes
      Cache
     
  17. sklearn.datasets.fetch_20newsgroups — scikit-le...

    test’ for the test set, ‘all’ for both,...on a Text Dataset Semi-supervised Classification on a Text Dataset...
    scikit-learn.org/stable/modules/generated/sklearn.datasets.fetch_20newsgroups.html
    Thu May 09 23:01:25 UTC 2024
      26K bytes
      Cache
     
  18. Target Encoder’s Internal Cross fitting — sciki...

    X_test , y_train , y_test = train_test_split ( X ,...score on test set: " , raw_model . score ( X_test , y_test )) Raw...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_target_encoder_cross_val.html
    Thu May 09 23:01:25 UTC 2024
      48.6K bytes
      Cache
     
  19. auto_examples_jupyter.zip

    X_test, y_train, y_test = train_test_split(\n X, y, test_size=0.25,...\"%(n_test)6d test docs (%(n_test_pos)6d positive) \" % test_stats\n...
    scikit-learn.org/stable/_downloads/6f1e7a639e0699d6164445b55e6c116d/auto_examples_jupyter.zip
    Thu May 09 23:01:25 UTC 2024
      2.1M bytes
      2 views
     
  20. 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
    Thu May 09 23:01:25 UTC 2024
      44.6K bytes
      Cache
     
Back to top