Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 281 - 300 of 904 for test (0.14 sec)

  1. 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 Apr 24 18:54:20 UTC 2024
      44.1K bytes
      Cache
     
  2. Logistic function — scikit-learn 1.4.2 document...

    plot ( X_test , ols . coef_ * X_test + ols . intercept_...= "black" , zorder = 20 ) X_test = np . linspace ( - 5 , 10 ,...
    scikit-learn.org/stable/auto_examples/linear_model/plot_logistic.html
    Wed Apr 24 18:54:20 UTC 2024
      32.7K bytes
      Cache
     
  3. Understanding the decision tree structure — sci...

    X_test , y_train , y_test = train_test_split ( X ,...decision_path ( X_test ) leaf_id = clf . apply ( X_test ) sample_id...
    scikit-learn.org/stable/auto_examples/tree/plot_unveil_tree_structure.html
    Wed Apr 24 18:54:16 UTC 2024
      61.8K bytes
      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 Apr 24 18:54:16 UTC 2024
      26.4K bytes
      Cache
     
  5. 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 Apr 24 18:54:16 UTC 2024
      45K bytes
      Cache
     
  6. 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 Apr 24 18:54:20 UTC 2024
      41K bytes
      Cache
     
  7. 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 Apr 24 18:54:16 UTC 2024
      27.1K bytes
      Cache
     
  8. 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
    Wed Apr 24 18:54:16 UTC 2024
      73.8K bytes
      Cache
     
  9. 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
    Wed Apr 24 18:54:16 UTC 2024
      118K bytes
      Cache
     
  10. sklearn.impute.IterativeImputer — scikit-learn ...

    missing values at transform/test time. keep_empty_features bool,...simple estimators as well as on nested objects (such as Pipeline )....
    scikit-learn.org/stable/modules/generated/sklearn.impute.IterativeImputer.html
    Wed Apr 24 18:54:16 UTC 2024
      61.8K bytes
      Cache
     
  11. Slashdot: News for nerds, stuff that matters

    percent for every other model we test (GPT-3.5, open-source LLMs)...positional data and any calls or text made while using it. Moreover,...
    slashdot.org/popular
    Thu Apr 25 01:14:59 UTC 2024
      130.6K bytes
      Cache
     
  12. Restricted Boltzmann Machine features for digit...

    X_test , Y_train , Y_test = train_test_split ( X ,...sklearn.model_selection import train_test_split from sklearn.preprocessing...
    scikit-learn.org/stable/auto_examples/neural_networks/plot_rbm_logistic_classification.html
    Wed Apr 24 18:54:16 UTC 2024
      59.5K bytes
      Cache
     
  13. Compare cross decomposition methods — scikit-le...

    ) X_test_r , Y_test_r = cca . transform ( X_test , Y_test ) Total...Y_train ) X_test_r , Y_test_r = plsca . transform ( X_test , Y_test...
    scikit-learn.org/stable/auto_examples/cross_decomposition/plot_compare_cross_decomposition.html
    Wed Apr 24 18:54:16 UTC 2024
      62.8K bytes
      Cache
     
  14. 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
    Wed Apr 24 18:54:20 UTC 2024
      38.4K bytes
      Cache
     
  15. Cross-validation on diabetes Dataset Exercise —...

    regularization Nested versus non-nested cross-validation Nested versus...lasso_cv . score ( X [ test ], y [ test ]) ) ) print () print...
    scikit-learn.org/stable/auto_examples/exercises/plot_cv_diabetes.html
    Wed Apr 24 18:54:16 UTC 2024
      36.8K bytes
      Cache
     
  16. 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 Apr 24 18:54:16 UTC 2024
      66.7K bytes
      Cache
     
  17. 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
    Wed Apr 24 18:54:20 UTC 2024
      95K bytes
      Cache
     
  18. Comparing Random Forests and Histogram Gradient...

    significant improvement of the testing score. Plot results We can...elapsed computing time and mean test score. Passing the cursor over...
    scikit-learn.org/stable/auto_examples/ensemble/plot_forest_hist_grad_boosting_comparison.html
    Wed Apr 24 18:54:20 UTC 2024
      61.3K bytes
      Cache
     
  19. Comparison of kernel ridge regression and SVR —...

    train_time = [] test_time = [] for train_test_size in sizes :...fit ( X [: train_test_size ], y [: train_test_size ]) train_time...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_kernel_ridge_regression.html
    Wed Apr 24 18:54:20 UTC 2024
      59.7K bytes
      Cache
     
  20. 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
    Wed Apr 24 18:54:16 UTC 2024
      48.4K bytes
      1 views
      Cache
     
Back to top