Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 241 - 260 of 1,032 for test (0.14 sec)

  1. sklearn.naive_bayes.CategoricalNB — scikit-lear...

    classification on an array of test vectors X. predict_joint_log_proba...probability estimates for the test vector X. predict_log_proba...
    scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.CategoricalNB.html
    Thu May 09 23:01:25 UTC 2024
      66.7K bytes
      Cache
     
  2. sklearn.naive_bayes.ComplementNB — scikit-learn...

    classification on an array of test vectors X. predict_joint_log_proba...probability estimates for the test vector X. predict_log_proba...
    scikit-learn.org/stable/modules/generated/sklearn.naive_bayes.ComplementNB.html
    Thu May 09 23:01:25 UTC 2024
      67.8K bytes
      Cache
     
  3. Common pitfalls in the interpretation of coeffi...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...predict ( X_test ) mae_test = median_absolute_error ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/inspection/plot_linear_model_coefficient_interpretation.html
    Thu May 09 23:01:25 UTC 2024
      214.7K bytes
      Cache
     
  4. Tweedie regression on insurance claims — scikit...

    ( "test" , X_test , df_test ), ]: y , _weights...train_test_split df_train , df_test , X_train , X_test = train_test_split...
    scikit-learn.org/stable/auto_examples/linear_model/plot_tweedie_regression_insurance_claims.html
    Thu May 09 23:01:25 UTC 2024
      118K bytes
      Cache
     
  5. sklearn.feature_selection.SelectFpr — scikit-le...

    a FPR test. FPR test stands for False Positive Rate test. It controls...simple estimators as well as on nested objects (such as Pipeline )....
    scikit-learn.org/stable/modules/generated/sklearn.feature_selection.SelectFpr.html
    Thu May 09 23:01:25 UTC 2024
      45.7K bytes
      Cache
     
  6. 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
    Thu May 09 23:01:25 UTC 2024
      55.6K bytes
      Cache
     
  7. 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
    Thu May 09 23:01:25 UTC 2024
      85.1K bytes
      Cache
     
  8. 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
    Thu May 09 23:01:24 UTC 2024
      35.2K bytes
      Cache
     
  9. Elastic ServiceNow connector reference | Enterp...

    atf_test_designer , atf_test_admin Knowledge admin...sn_request_read , asset , atf_test_designer , atf_test_admin Knowledge admin...
    www.elastic.co/guide/en/enterprise-search/current/connectors-servicenow.html
    Thu May 09 14:03:31 UTC 2024
      57.5K bytes
      Cache
     
  10. sklearn.semi_supervised.LabelPropagation — scik...

    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.semi_supervised.LabelPropagation.html
    Thu May 09 23:01:25 UTC 2024
      43.5K bytes
      Cache
     
  11. Permutation Importance vs Random Forest Feature...

    X_test , y_train , y_test = train_test_split ( X ,...( f "RF test accuracy: { rf . score ( X_test , y_test ) : .3f...
    scikit-learn.org/stable/auto_examples/inspection/plot_permutation_importance.html
    Thu May 09 23:01:25 UTC 2024
      95K bytes
      Cache
     
  12. Release Highlights for scikit-learn 1.4 — sciki...

    X_test , y_train , y_test = train_test_split ( X_adult...( "cv error on test sets:" , results [ "test_mse" ]) # Setting...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_4_0.html
    Thu May 09 23:01:25 UTC 2024
      91.3K bytes
      Cache
     
  13. 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
    Thu May 09 23:01:25 UTC 2024
      38.8K bytes
      2 views
      Cache
     
  14. RBF SVM parameters — scikit-learn 1.4.2 documen...

    best_params_ , grid . best_score_ ) ) The best parameters...and just applying it on the test set. from sklearn.preprocessing...
    scikit-learn.org/stable/auto_examples/svm/plot_rbf_parameters.html
    Thu May 09 23:01:25 UTC 2024
      54.9K bytes
      Cache
     
  15. Quick start | Elasticsearch Guide [8.13] | Elastic

    you prefer to manage your own test environment, install and run...start, which makes sense for testing and development. Refer to Install...
    www.elastic.co/guide/en/elasticsearch/reference/current/getting-started.html
    Thu May 09 14:03:31 UTC 2024
      45.4K bytes
      Cache
     
  16. 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
    Thu May 09 23:01:25 UTC 2024
      34.8K bytes
      Cache
     
  17. Comparison between grid search and successive h...

    is_sh : # SH dataframe: get mean_test_score values for the highest...= "param_C" , values = "mean_test_score" , aggfunc = "last" ,...
    scikit-learn.org/stable/auto_examples/model_selection/plot_successive_halving_heatmap.html
    Thu May 09 23:01:25 UTC 2024
      43.2K bytes
      Cache
     
  18. Plotting Learning Curves and Checking Models’ S...

    [ test_scores_nb , test_scores_svm ], [ naive_bayes...axis = 1 ), test_scores . mean ( axis = 1 ) - test_scores . std...
    scikit-learn.org/stable/auto_examples/model_selection/plot_learning_curve.html
    Thu May 09 23:01:24 UTC 2024
      48.4K bytes
      1 views
      Cache
     
  19. Elastic Azure Blob Storage connector reference ...

    Connector testing for more details. To perform E2E testing for the...$ make ftest NAME=azure_blob_storage For faster tests, add the...
    www.elastic.co/guide/en/enterprise-search/current/connectors-azure-blob.html
    Thu May 09 14:03:11 UTC 2024
      44.4K bytes
      Cache
     
  20. sklearn.calibration.CalibrationDisplay — scikit...

    X_test , y_train , y_test = train_test_split ( ......X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/modules/generated/sklearn.calibration.CalibrationDisplay.html
    Thu May 09 23:01:25 UTC 2024
      50.6K bytes
      Cache
     
Back to top