Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 341 - 360 of 1,341 for test (0.19 sec)

  1. L1-based models for Sparse Signals — scikit-lea...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.5 , shuffle = False ) In...
    scikit-learn.org/stable/auto_examples/linear_model/plot_lasso_and_elasticnet.html
    Tue Jul 01 15:59:32 UTC 2025
      125.4K bytes
      Cache
     
  2. MNIST classification using multinomial logistic...

    X_test , y_train , y_test = train_test_split ( X ,...clf . score ( X_test , y_test ) # print('Best C % .4f' % clf.C_)...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sparse_logistic_regression_mnist.html
    Tue Jul 01 15:59:35 UTC 2025
      96.3K bytes
      Cache
     
  3. 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
    Tue Jul 01 15:59:32 UTC 2025
      112.3K bytes
      Cache
     
  4. Release Highlights for scikit-learn 0.24 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( X ,...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_24_0.html
    Tue Jul 01 15:59:32 UTC 2025
      176.2K bytes
      Cache
     
  5. Classifier comparison — scikit-learn 1.7.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
    Tue Jul 01 15:59:33 UTC 2025
      114.3K bytes
      Cache
     
  6. Non-negative least squares — scikit-learn 1.7.0...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.5 ) Fit the Non-Negative...
    scikit-learn.org/stable/auto_examples/linear_model/plot_nnls.html
    Tue Jul 01 15:59:32 UTC 2025
      93.4K bytes
      Cache
     
  7. Probability Calibration for 3-class classificat...

    y [: 1000 ] X_test , y_test = X [ 1000 :], y [ 1000...log_loss ( y_test , clf_probs ) cal_loss = log_loss ( y_test , cal_clf_probs...
    scikit-learn.org/stable/auto_examples/calibration/plot_calibration_multiclass.html
    Tue Jul 01 15:59:32 UTC 2025
      190.5K bytes
      Cache
     
  8. 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
    Tue Jul 01 15:59:32 UTC 2025
      112.9K bytes
      Cache
     
  9. Decision Tree Regression — scikit-learn 1.7.0 d...

    Get predictions on the test set X_test = np . arange ( 0.0 , 5.0...predict ( X_test ) y_2 = regr_2 . predict ( X_test ) Plot the...
    scikit-learn.org/stable/auto_examples/tree/plot_tree_regression.html
    Tue Jul 01 15:59:32 UTC 2025
      152.4K bytes
      Cache
     
  10. 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
    Tue Jul 01 15:59:35 UTC 2025
      108.5K bytes
      Cache
     
  11. Examples of Using FrozenEstimator — scikit-lear...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test )[:, 1 ] clf_score = brier_score_loss ( y_test , prob_pos_clf...
    scikit-learn.org/stable/auto_examples/frozen/plot_frozen_examples.html
    Tue Jul 01 15:59:33 UTC 2025
      100.9K bytes
      Cache
     
  12. LinearSVC — scikit-learn 1.7.0 documentation

    vs the rest. It is possible to implement one vs the rest with SVC...shape (n_samples, n_features) Test samples. y array-like of shape...
    scikit-learn.org/stable/modules/generated/sklearn.svm.LinearSVC.html
    Tue Jul 01 15:59:32 UTC 2025
      162.7K bytes
      Cache
     
  13. Release Highlights for scikit-learn 0.22 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...plot_roc_curve(svc, X_test, y_test) # rfc_disp = plot_roc_curve(rfc, X_test, y_test,...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_22_0.html
    Tue Jul 01 15:59:33 UTC 2025
      140.6K bytes
      Cache
     
  14. Confusion matrix — scikit-learn 1.7.0 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
    Tue Jul 01 15:59:32 UTC 2025
      88.9K bytes
      Cache
     
  15. Feature discretization — scikit-learn 1.7.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
    Tue Jul 01 15:59:35 UTC 2025
      128.7K bytes
      Cache
     
  16. RandomForestClassifier — scikit-learn 1.7.0 doc...

    max_leaf_nodes in best-first fashion. Best nodes are defined...shape (n_samples, n_features) Test samples. y array-like of shape...
    scikit-learn.org/stable/modules/generated/sklearn.ensemble.RandomForestClassifier.html
    Tue Jul 01 15:59:32 UTC 2025
      182K bytes
      Cache
     
  17. Release Highlights for scikit-learn 1.5 — sciki...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( classifier_05 , X_test , y_test ) Lowering the threshold,...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_5_0.html
    Tue Jul 01 15:59:32 UTC 2025
      123.1K bytes
      Cache
     
  18. Precision-Recall — scikit-learn 1.7.0 documenta...

    and test X_train , X_test , y_train , y_test = train_test_split...and test X_train , X_test , Y_train , Y_test = train_test_split...
    scikit-learn.org/stable/auto_examples/model_selection/plot_precision_recall.html
    Tue Jul 01 15:59:33 UTC 2025
      151.3K bytes
      Cache
     
  19. Demonstration of multi-metric evaluation on cro...

    The best_estimator_ , best_index_ , best_score_ and best_params_...``gs.best_score_``, ``gs.best_params_`` and # ``gs.best_index_``...
    scikit-learn.org/stable/auto_examples/model_selection/plot_multi_metric_evaluation.html
    Tue Jul 01 15:59:33 UTC 2025
      101.5K bytes
      Cache
     
  20. Lagged features for time series forecasting — s...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...train_test_split ( X , y , test_size = 0.2 , random_state = 42 )...
    scikit-learn.org/stable/auto_examples/applications/plot_time_series_lagged_features.html
    Tue Jul 01 15:59:35 UTC 2025
      162.8K bytes
      Cache
     
Back to top