Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 221 - 240 of 864 for test (0.13 sec)

  1. 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
    Wed May 15 13:59:41 UTC 2024
      50K bytes
      Cache
     
  2. sklearn.model_selection.LeavePOut — scikit-lear...

    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.LeavePOut.html
    Wed May 15 13:59:41 UTC 2024
      27.2K bytes
      Cache
     
  3. One-Class SVM versus One-Class SVM using Stocha...

    size n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...size n_error_test_sgd = y_pred_test_sgd [ y_pred_test_sgd == - 1...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sgdocsvm_vs_ocsvm.html
    Wed May 15 13:59:41 UTC 2024
      59.5K bytes
      1 views
      Cache
     
  4. Confusion matrix — scikit-learn 1.4.2 documenta...

    set and a test set X_train , X_test , y_train , y_test = train_test_split...from_estimator ( classifier , X_test , y_test , display_labels = class_names...
    scikit-learn.org/stable/auto_examples/model_selection/plot_confusion_matrix.html
    Wed May 15 13:59:43 UTC 2024
      26.4K bytes
      Cache
     
  5. Kernel PCA — scikit-learn 1.4.2 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
    Wed May 15 13:59:41 UTC 2024
      44.1K bytes
      Cache
     
  6. 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
    Wed May 15 13:59:43 UTC 2024
      35.2K 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
    Wed May 15 13:59:43 UTC 2024
      85.1K bytes
      Cache
     
  8. 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
    Wed May 15 13:59:41 UTC 2024
      55.6K bytes
      Cache
     
  9. 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
     
  10. Multilabel classification using a classifier ch...

    X_test , Y_train , Y_test = train_test_split ( X ,...predict ( X_test ) ovr_jaccard_score = jaccard_score ( Y_test , Y_pred_ovr...
    scikit-learn.org/stable/auto_examples/multioutput/plot_classifier_chain_yeast.html
    Wed May 15 13:59:40 UTC 2024
      41.5K bytes
      Cache
     
  11. Permutation Importance with Multicollinear or C...

    X_test , y_train , y_test = train_test_split ( X ,...accuracy on test data: { clf . score ( X_test , y_test ) : .2 }...
    scikit-learn.org/stable/auto_examples/inspection/plot_permutation_importance_multicollinear.html
    Wed May 15 13:59:41 UTC 2024
      52.1K bytes
      Cache
     
  12. Popular Favorites | MetaFilter

    Best printer 2024, best printer for home use,...camaraderie of the Bon Appetit Test Kitchen? And then, well, Milkshake...
    www.metafilter.com/popular.mefi
    Tue May 07 00:44:32 UTC 2024
      64.6K bytes
      Cache
     
  13. 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
    Wed May 15 13:59:41 UTC 2024
      41K bytes
      Cache
     
  14. Crafting a minimal reproducer for scikit-learn ...

    the train_test_split X_train , X_test , y_train , y_test = train_test_split...( X_test , y_test ) other_score = gbdt . score ( X_test , y_test...
    scikit-learn.org/stable/developers/minimal_reproducer.html
    Wed May 15 13:59:40 UTC 2024
      53.6K bytes
      Cache
     
  15. 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
    Wed May 15 13:59:41 UTC 2024
      45K bytes
      Cache
     
  16. sklearn.metrics.DetCurveDisplay — scikit-learn ...

    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.metrics.DetCurveDisplay.html
    Wed May 15 13:59:42 UTC 2024
      45.8K bytes
      Cache
     
  17. 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
    Wed May 15 13:59:43 UTC 2024
      27.1K bytes
      Cache
     
  18. Comparing random forests and the multi-output m...

    X_test , y_train , y_test = train_test_split ( X ,...predict ( X_test ) y_rf = regr_rf . predict ( X_test ) # Plot the...
    scikit-learn.org/stable/auto_examples/ensemble/plot_random_forest_regression_multioutput.html
    Wed May 15 13:59:40 UTC 2024
      35.6K bytes
      Cache
     
  19. Early stopping of Stochastic Gradient Descent —...

    y_train ) test_score = estimator . score ( X_test , y_test ) return...X_train , X_test , y_train , y_test = train_test_split ( X ,...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sgd_early_stopping.html
    Wed May 15 13:59:40 UTC 2024
      44.4K bytes
      Cache
     
  20. 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
    Wed May 15 13:59:42 UTC 2024
      66.7K bytes
      Cache
     
Back to top