Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 301 - 320 of 889 for test (0.44 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 22 15:20:10 UTC 2024
      178.4K bytes
      Cache
     
  2. Comparing various online solvers — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test ) yy_ . append ( 1 - np . mean ( y_pred == y_test ))...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sgd_comparison.html
    Wed May 22 15:20:07 UTC 2024
      94.9K bytes
      Cache
     
  3. Probability Calibration curves — scikit-learn 1...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( clf , X_test , y_test , n_bins = 10 , name = name...
    scikit-learn.org/stable/auto_examples/calibration/plot_calibration_curve.html
    Wed May 22 15:20:10 UTC 2024
      141.2K bytes
      Cache
     
  4. Gradient Boosting regularization — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...( X_test )): test_deviance [ i ] = 2 * log_loss ( y_test , y_proba...
    scikit-learn.org/stable/auto_examples/ensemble/plot_gradient_boosting_regularization.html
    Wed May 22 15:20:10 UTC 2024
      95K bytes
      Cache
     
  5. Release Highlights for scikit-learn 0.23 — scik...

    X_test , y_train , y_test = train_test_split ( X ,...score ( X_test , y_test )) print ( gbdt . score ( X_test , y_test...
    scikit-learn.org/stable/auto_examples/release_highlights/plot_release_highlights_0_23_0.html
    Wed May 22 15:20:07 UTC 2024
      143.5K bytes
      Cache
     
  6. 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 22 15:20:07 UTC 2024
      156.7K bytes
      Cache
     
  7. 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 22 15:20:07 UTC 2024
      150.9K bytes
      Cache
     
  8. 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 22 15:20:10 UTC 2024
      97.8K bytes
      Cache
     
  9. CalibrationDisplay — scikit-learn 1.5.0 documen...

    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 22 15:20:08 UTC 2024
      145.4K bytes
      Cache
     
  10. Cross-validation on diabetes Dataset Exercise —...

    score ( X [ test ], y [ test ]) ) ) print () print...Train error vs Test error Train error vs Test error Lasso model...
    scikit-learn.org/stable/auto_examples/exercises/plot_cv_diabetes.html
    Wed May 22 15:20:07 UTC 2024
      99.8K bytes
      Cache
     
  11. Class Likelihood Ratios to measure classificati...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...the link between pre-test and post-test odds given by the Class...
    scikit-learn.org/stable/auto_examples/model_selection/plot_likelihood_ratios.html
    Wed May 22 15:20:10 UTC 2024
      137.7K bytes
      Cache
     
  12. 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 22 15:20:05 UTC 2024
      110.8K bytes
      1 views
      Cache
     
  13. GraphicalLasso — scikit-learn 1.5.0 documentation

    : X_test array-like of shape (n_samples, n_features) Test data...the observations. score ( X_test , y = None ) [source] # Compute...
    scikit-learn.org/stable/modules/generated/sklearn.covariance.GraphicalLasso.html
    Wed May 22 15:20:10 UTC 2024
      143.2K bytes
      Cache
     
  14. PrecisionRecallDisplay — scikit-learn 1.5.0 doc...

    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 22 15:20:05 UTC 2024
      153.3K bytes
      Cache
     
  15. 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 22 15:20:05 UTC 2024
      95.7K bytes
      Cache
     
  16. ROC Curve with Visualization API — scikit-learn...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( svc , X_test , y_test ) plt . show () Training...
    scikit-learn.org/stable/auto_examples/miscellaneous/plot_roc_curve_visualization_api.html
    Wed May 22 15:20:10 UTC 2024
      104.2K bytes
      Cache
     
  17. 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 22 15:20:05 UTC 2024
      121.8K bytes
      Cache
     
  18. NeighborhoodComponentsAnalysis — scikit-learn 1...

    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 22 15:20:08 UTC 2024
      148.8K bytes
      Cache
     
  19. 5. Visualizations — scikit-learn 1.5.0 document...

    X_test , y_train , y_test = train_test_split ( X ,...from_estimator ( svc , X_test , y_test ) The returned svc_disp...
    scikit-learn.org/stable/visualizations.html
    Wed May 22 15:20:08 UTC 2024
      48.4K bytes
      Cache
     
  20. Multiclass Receiver Operating Characteristic (R...

    X_test , y_train , y_test , ) = train_test_split ( X...y_onehot_test = label_binarizer . transform ( y_test ) y_onehot_test...
    scikit-learn.org/stable/auto_examples/model_selection/plot_roc.html
    Wed May 22 15:20:05 UTC 2024
      147.5K bytes
      Cache
     
Back to top