Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 181 - 190 of 662 for test (0.1 sec)

  1. NeighborhoodComponentsAnalysis — scikit-learn 1...

    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
    Mon May 27 10:29:31 UTC 2024
      148.8K bytes
      Cache
     
  2. 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
    Mon May 27 10:29:30 UTC 2024
      97.8K bytes
      Cache
     
  3. Multiclass Receiver Operating Characteristic (R...

    X_test , y_train , y_test , ) = train_test_split ( X...y_onehot_test = label_binarizer . transform ( y_test ) y_onehot_test...
    scikit-learn.org/stable/auto_examples/model_selection/plot_roc.html
    Mon May 27 10:29:29 UTC 2024
      147.5K bytes
      Cache
     
  4. 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
    Mon May 27 10:29:30 UTC 2024
      111.4K bytes
      Cache
     
  5. Classifier comparison — scikit-learn 1.5.0 docu...

    y_test = train_test_split ( X , y , test_size = 0.4 , random_state...the testing points ax . scatter ( X_test [:, 0 ], X_test [:,...
    scikit-learn.org/stable/auto_examples/classification/plot_classifier_comparison.html
    Mon May 27 10:29:30 UTC 2024
      113.4K bytes
      Cache
     
  6. 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
    Mon May 27 10:29:30 UTC 2024
      101.6K bytes
      Cache
     
  7. Principal Component Regression vs Partial Least...

    X_test , y_train , y_test = train_test_split ( X ,...scatter ( pca . transform ( X_test ), y_test , alpha = 0.3 , label =...
    scikit-learn.org/stable/auto_examples/cross_decomposition/plot_pcr_vs_pls.html
    Mon May 27 10:29:28 UTC 2024
      112.2K bytes
      Cache
     
  8. Comparison of Calibration of Classifiers — scik...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , n_bins = 10 , name = name...
    scikit-learn.org/stable/auto_examples/calibration/plot_compare_calibration.html
    Mon May 27 10:29:29 UTC 2024
      115.1K bytes
      Cache
     
  9. Feature discretization — scikit-learn 1.5.0 doc...

    training and test part X_train , X_test , y_train , y_test = train_test_split...and testing points ax . scatter ( X_test [:, 0 ], X_test [:,...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_discretization_classification.html
    Mon May 27 10:29:30 UTC 2024
      127.4K bytes
      Cache
     
  10. 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
    Mon May 27 10:29:28 UTC 2024
      104.4K bytes
      Cache
     
Back to top