Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 281 - 300 of 913 for test (0.16 sec)

  1. 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
    Fri Apr 26 16:41:48 UTC 2024
      118K bytes
      Cache
     
  2. Developer’s Guide — scikit-learn 1.4.2 document...

    on GitHub Actions Testing and improving test coverage Writing...matplotlib related tests Workflow to improve test coverage Monitoring...
    scikit-learn.org/stable/developers/index.html
    Fri Apr 26 16:41:48 UTC 2024
      38.9K bytes
      Cache
     
  3. Overview of multiclass training meta-estimators...

    examples Nested versus non-nested cross-validation Nested versus..."DecisionTreeClassifi" : cv_results_tree [ "test_score" ], "OneVsOneClassifier"...
    scikit-learn.org/stable/auto_examples/multiclass/plot_multiclass_overview.html
    Fri Apr 26 16:41:51 UTC 2024
      49.9K bytes
      Cache
     
  4. 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
    Fri Apr 26 16:41:48 UTC 2024
      33.4K bytes
      Cache
     
  5. Prediction Intervals for Gradient Boosting Regr...

    test datasets: X_train , X_test , y_train , y_test = train_test_split...( X_test , y_test , "b." , markersize = 10 , label = "Test observations"...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_quantile.html
    Fri Apr 26 16:41:51 UTC 2024
      78.6K bytes
      Cache
     
  6. Time-related feature engineering — scikit-learn...

    test_0 = all_splits [ 0 ] X . iloc [ test_0 ] season...train_4 , test_4 = all_splits [ 4 ] X . iloc [ test_4 ] season...
    scikit-learn.org/stable/auto_examples/applications/plot_cyclical_feature_engineering.html
    Fri Apr 26 16:41:50 UTC 2024
      151.8K bytes
      Cache
     
  7. Elastic on Elastic: How InfoSec uses the Elasti...

    allowing us to test fields or dashboards without...'https://qualysapi.xxx.apps.qualys.com/qps/rest/2.0/update/am/tag' \ --location...
    www.elastic.co/blog/how-infosec-uses-elastic-stack-vulnerability-management
    Sat Apr 27 00:58:58 UTC 2024
      514.5K bytes
      Cache
     
  8. 10. Common pitfalls and recommended practices —...

    X_test , y_train , y_test = train_test_split ( ......X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/common_pitfalls.html
    Fri Apr 26 16:41:50 UTC 2024
      83K bytes
      Cache
     
  9. 6.1. Pipelines and composite estimators — sciki...

    X_test , y_train , y_test = train_test_split ( X ,...format ( regr . score ( X_test , y_test ))) R2 score: 0.61 >>> raw_target_regr...
    scikit-learn.org/stable/modules/compose.html
    Fri Apr 26 16:41:50 UTC 2024
      90.1K bytes
      Cache
     
  10. 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
    Fri Apr 26 16:41:48 UTC 2024
      66.7K 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
    Fri Apr 26 16:41:50 UTC 2024
      95K bytes
      Cache
     
  12. sklearn.model_selection.PredefinedSplit — sciki...

    Provides train/test indices to split data into train/test sets using...The entry test_fold[i] represents the index of the test set that...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.PredefinedSplit.html
    Fri Apr 26 16:41:50 UTC 2024
      26.6K bytes
      Cache
     
  13. Introducing the set_output API — scikit-learn 1...

    X_test , y_train , y_test = train_test_split ( X ,...X_train ) X_test_scaled = scaler . transform ( X_test ) X_test_scaled...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_set_output.html
    Fri Apr 26 16:41:51 UTC 2024
      77K bytes
      Cache
     
  14. 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
    Fri Apr 26 16:41:48 UTC 2024
      48.4K bytes
      1 views
      Cache
     
  15. Face completion with a multi-output estimators ...

    randint ( test . shape [ 0 ], size = ( n_faces ,)) test = test [ face_ids...2 :] X_test = test [:, : ( n_pixels + 1 ) // 2 ] y_test = test...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_multioutput_face_completion.html
    Fri Apr 26 16:41:51 UTC 2024
      36.4K bytes
      Cache
     
  16. 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
    Fri Apr 26 16:41:50 UTC 2024
      50.6K bytes
      Cache
     
  17. Comparing Target Encoder with Other Encoders — ...

    "rmse_test_mean" : rmse_test_score . mean (), "rmse_test_std"...= True , ) rmse_test_score = - result [ "test_score" ] rmse_train_score...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_target_encoder.html
    Fri Apr 26 16:41:48 UTC 2024
      73.9K bytes
      Cache
     
  18. Underfitting vs. Overfitting — scikit-learn 1.4...

    plot ( X_test , pipeline . predict ( X_test [:, np . newaxis..."Model" ) plt . plot ( X_test , true_fun ( X_test ), label = "True function"...
    scikit-learn.org/stable/auto_examples/model_selection/plot_underfitting_overfitting.html
    Fri Apr 26 16:41:51 UTC 2024
      35.6K bytes
      Cache
     
  19. sklearn.model_selection.LeaveOneOut — scikit-le...

    Provides train/test indices to split data in train/test sets. Each..." ) ... print ( f " Test: index= { test_index } " ) Fold 0: Train:...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.LeaveOneOut.html
    Fri Apr 26 16:41:50 UTC 2024
      27.1K bytes
      Cache
     
  20. sklearn.model_selection.LeavePGroupsOut — sciki...

    f " Test: index= { test_index } , group= { groups [ test_index...indices for that split. test ndarray The testing set indices for that...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.LeavePGroupsOut.html
    Fri Apr 26 16:41:50 UTC 2024
      34.1K bytes
      Cache
     
Back to top