Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 181 - 200 of 1,113 for test (0.16 sec)

  1. sklearn.covariance.OAS — scikit-learn 1.4.2 doc...

    score (X_test[, y]) Compute the log-likelihood of X_test under the...: X_test array-like of shape (n_samples, n_features) Test data...
    scikit-learn.org/stable/modules/generated/sklearn.covariance.OAS.html
    Fri Apr 26 16:41:50 UTC 2024
      50.1K bytes
      Cache
     
  2. 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
    Fri Apr 26 16:41:48 UTC 2024
      36.8K bytes
      Cache
     
  3. 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
    Fri Apr 26 16:41:51 UTC 2024
      61.3K bytes
      Cache
     
  4. 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
    Fri Apr 26 16:41:51 UTC 2024
      59.7K bytes
      Cache
     
  5. 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
     
  6. Gradient Boosting regression — scikit-learn 1.4...

    X_test , y_train , y_test = train_test_split ( X ,...mean_squared_error ( y_test , reg . predict ( X_test )) print ( "The...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_regression.html
    Fri Apr 26 16:41:51 UTC 2024
      44.6K bytes
      Cache
     
  7. 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
     
  8. sklearn.ensemble.ExtraTreesRegressor — scikit-l...

    X_test , y_train , y_test = train_test_split ( ......y_train ) >>> reg . score ( X_test , y_test ) 0.2727... Methods apply...
    scikit-learn.org/stable/modules/generated/sklearn.ensemble.ExtraTreesRegressor.html
    Fri Apr 26 16:41:50 UTC 2024
      77.8K bytes
      Cache
     
  9. 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
     
  10. 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
     
  11. auto_examples_python.zip

    tick test_stats["n_test"] += len(y_test) test_stats["n_test_pos"]...X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.25,...
    scikit-learn.org/stable/_downloads/07fcc19ba03226cd3d83d4e40ec44385/auto_examples_python.zip
    Fri Apr 26 16:41:50 UTC 2024
      1.6M bytes
      3 views
     
  12. 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:51 UTC 2024
      151.8K bytes
      Cache
     
  13. 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
     
  14. 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
     
  15. 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
     
  16. glossary.rst.txt

    common tests This refers to the tests run on almost every...``(train_idx, test_idx)`` pairs. Each of {train,test}_idx is a 1d...
    scikit-learn.org/stable/_sources/glossary.rst.txt
    Fri Apr 26 16:41:50 UTC 2024
      88.1K bytes
      1 views
     
  17. 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
     
  18. 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
    Fri Apr 26 16:41:50 UTC 2024
      61.3K bytes
      Cache
     
  19. Post pruning decision trees with cost complexit...

    X_test , y_train , y_test = train_test_split ( X ,...clfs ] test_scores = [ clf . score ( X_test , y_test ) for clf...
    scikit-learn.org/stable/auto_examples/tree/plot_cost_complexity_pruning.html
    Fri Apr 26 16:41:50 UTC 2024
      39.5K bytes
      Cache
     
  20. 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
     
Back to top