Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 51 - 60 of 438 for tests (0.1 sec)

  1. sklearn.model_selection.validation_curve — scik...

    print ( f "The average test accuracy is { test_scores . mean () :...curve. Determine training and test scores for varying parameter...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.validation_curve.html
    Sat May 11 22:20:00 UTC 2024
      28.2K bytes
      Cache
     
  2. 7.2. Real world datasets — scikit-learn 1.4.2 d...

    newsgroups_test = fetch_20newsgroups ( subset = 'test' , ... categories...vectors_test = vectorizer . transform ( newsgroups_test . data...
    scikit-learn.org/stable/datasets/real_world.html
    Sat May 11 22:20:02 UTC 2024
      80.9K bytes
      Cache
     
  3. sklearn.model_selection.LearningCurveDisplay — ...

    test_scores = test_scores , score_name =...train_sizes , train_scores , test_scores , score_name = None )...
    scikit-learn.org/stable/modules/generated/sklearn.model_selection.LearningCurveDisplay.html
    Sat May 11 22:20:00 UTC 2024
      56.8K bytes
      Cache
     
  4. 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
    Sat May 11 22:20:02 UTC 2024
      85.1K bytes
      Cache
     
  5. 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
    Sat May 11 22:20:02 UTC 2024
      61.8K bytes
      Cache
     
  6. 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
    Sat May 11 22:20:02 UTC 2024
      32.7K bytes
      Cache
     
  7. 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
    Sat May 11 22:20:00 UTC 2024
      55.6K bytes
      Cache
     
  8. Comparison of Calibration of Classifiers — scik...

    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_compare_calibration.html
    Sat May 11 22:20:02 UTC 2024
      52.4K bytes
      Cache
     
  9. 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
    Sat May 11 22:20:02 UTC 2024
      59.5K bytes
      Cache
     
  10. Multi-output Decision Tree Regression — scikit-...

    predict ( X_test ) y_2 = regr_2 . predict ( X_test ) y_3 = regr_3.... fit ( X , y ) # Predict X_test = np . arange ( - 100.0 , 100.0...
    scikit-learn.org/stable/auto_examples/tree/plot_tree_regression_multioutput.html
    Sat May 11 22:20:02 UTC 2024
      33.8K bytes
      Cache
     
Back to top