Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 301 - 320 of 851 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
    Wed May 08 07:10:46 UTC 2024
      118K bytes
      Cache
     
  2. Feature transformations with ensembles of trees...

    X_test , y_full_train , y_test = train_test_split ( X...train_test_split ( X_full_train , y_full_train , test_size =...
    scikit-learn.org/stable/auto_examples/ensemble/plot_feature_transformation.html
    Wed May 08 07:10:46 UTC 2024
      88.7K bytes
      Cache
     
  3. One-class SVM with non-linear kernel (RBF) — sc...

    size n_error_test = y_pred_test [ y_pred_test == - 1 ] . size...X_train ) y_pred_test = clf . predict ( X_test ) y_pred_outliers...
    scikit-learn.org/stable/auto_examples/svm/plot_oneclass.html
    Wed May 08 07:10:46 UTC 2024
      37.1K bytes
      Cache
     
  4. 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
    Wed May 08 07:10:46 UTC 2024
      35.2K bytes
      Cache
     
  5. Multiclass Receiver Operating Characteristic (R...

    X_test , y_train , y_test , ) = train_test_split ( X...( X_test ) One-vs-Rest multiclass ROC The One-vs-the-Rest (OvR)...
    scikit-learn.org/stable/auto_examples/model_selection/plot_roc.html
    Wed May 08 07:10:45 UTC 2024
      85.1K bytes
      Cache
     
  6. sklearn.neighbors.NeighborhoodComponentsAnalysi...

    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
    Wed May 08 07:10:45 UTC 2024
      55.6K bytes
      Cache
     
  7. 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 May 08 07:10:45 UTC 2024
      95K bytes
      Cache
     
  8. Nearest Neighbors Classification — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...split the data into a train and test dataset. from sklearn.datasets...
    scikit-learn.org/stable/auto_examples/neighbors/plot_classification.html
    Wed May 08 07:10:46 UTC 2024
      32.7K bytes
      Cache
     
  9. 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 May 08 07:10:45 UTC 2024
      48.4K bytes
      1 views
      Cache
     
  10. 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
    Wed May 08 07:10:45 UTC 2024
      50.6K bytes
      Cache
     
  11. sklearn.linear_model.MultiTaskLasso — scikit-le...

    n_features) Test samples. For some estimators...y_true.mean()) ** 2).sum() . The best possible score is 1.0 and it...
    scikit-learn.org/stable/modules/generated/sklearn.linear_model.MultiTaskLasso.html
    Wed May 08 07:10:45 UTC 2024
      69.7K bytes
      Cache
     
  12. Decision Tree Regression — scikit-learn 1.4.2 d...

    predict ( X_test ) y_2 = regr_2 . predict ( X_test ) # Plot the.... fit ( X , y ) # Predict X_test = np . arange ( 0.0 , 5.0 ,...
    scikit-learn.org/stable/auto_examples/tree/plot_tree_regression.html
    Wed May 08 07:10:46 UTC 2024
      28.7K bytes
      Cache
     
  13. sklearn.metrics.PrecisionRecallDisplay — scikit...

    X_test , y_train , y_test = train_test_split ( X ,...X_train , X_test , y_train , y_test = train_test_split ( ......
    scikit-learn.org/stable/modules/generated/sklearn.metrics.PrecisionRecallDisplay.html
    Wed May 08 07:10:46 UTC 2024
      59K bytes
      Cache
     
  14. Common pitfalls in the interpretation of coeffi...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...predict ( X_test ) mae_test = median_absolute_error ( y_test , y_pred...
    scikit-learn.org/stable/auto_examples/inspection/plot_linear_model_coefficient_interpretation.html
    Wed May 08 07:10:46 UTC 2024
      214.7K bytes
      Cache
     
  15. Importance of Feature Scaling — scikit-learn 1....

    X_test , y_train , y_test = train_test_split ( X ,...( X_test ) y_pred_scaled = scaled_clf . predict ( X_test ) y_proba...
    scikit-learn.org/stable/auto_examples/preprocessing/plot_scaling_importance.html
    Wed May 08 07:10:45 UTC 2024
      59K bytes
      Cache
     
  16. Detection error tradeoff (DET) curve — scikit-l...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , ax = ax_roc , name = name...
    scikit-learn.org/stable/auto_examples/model_selection/plot_det.html
    Wed May 08 07:10:46 UTC 2024
      33.6K bytes
      Cache
     
  17. 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
    Wed May 08 07:10:46 UTC 2024
      48.6K bytes
      Cache
     
  18. Release Highlights for scikit-learn 1.4 — sciki...

    X_test , y_train , y_test = train_test_split ( X_adult...( "cv error on test sets:" , results [ "test_mse" ]) # Setting...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_1_4_0.html
    Wed May 08 07:10:46 UTC 2024
      91.3K bytes
      Cache
     
  19. Classifier comparison — scikit-learn 1.4.2 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
    Wed May 08 07:10:46 UTC 2024
      50.9K bytes
      Cache
     
  20. Comparing Nearest Neighbors with and without Ne...

    X_test , y_train , y_test = train_test_split ( X ,...score = clf . score ( X_test , y_test ) _ , ax = plt . subplots...
    scikit-learn.org/stable/auto_examples/neighbors/plot_nca_classification.html
    Wed May 08 07:10:46 UTC 2024
      34.9K bytes
      Cache
     
Back to top