Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 121 - 130 of 824 for tests (0.09 sec)

  1. preprocessing.rst.txt

    X_test, y_train, y_test = train_test_split(X, y, random_state=42)...pipe.score(X_test, y_test) # apply scaling on testing data, without...
    scikit-learn.org/stable/_sources/modules/preprocessing.rst.txt
    Sat May 11 22:20:02 UTC 2024
      52.7K bytes
     
  2. 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
    Tue May 14 20:49:02 UTC 2024
      81.1K bytes
      Cache
     
  3. MNIST classification using multinomial logistic...

    X_test , y_train , y_test = train_test_split ( X ,...( X_train ) X_test = scaler . transform ( X_test ) # Turn up tolerance...
    scikit-learn.org/stable/auto_examples/linear_model/plot_sparse_logistic_regression_mnist.html
    Tue May 14 20:49:03 UTC 2024
      33.4K bytes
      Cache
     
  4. 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
    Tue May 14 20:49:02 UTC 2024
      88.7K bytes
      Cache
     
  5. 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
    Tue May 14 20:49:03 UTC 2024
      36.8K bytes
      Cache
     
  6. sklearn.naive_bayes.MultinomialNB — 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.MultinomialNB.html
    Tue May 14 20:49:02 UTC 2024
      66.4K bytes
      Cache
     
  7. Class Likelihood Ratios to measure classificati...

    import train_test_split X_train , X_test , y_train , y_test = train_test_split...classification performance Pre-test vs. post-test analysis Cross-validation...
    scikit-learn.org/stable/auto_examples/model_selection/plot_likelihood_ratios.html
    Tue May 14 20:49:02 UTC 2024
      76.3K 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
    Tue May 14 20:49:02 UTC 2024
      32.7K bytes
      Cache
     
  9. Precision-Recall — scikit-learn 1.4.2 documenta...

    and test X_train , X_test , y_train , y_test = train_test_split...and test X_train , X_test , Y_train , Y_test = train_test_split...
    scikit-learn.org/stable/auto_examples/model_selection/plot_precision_recall.html
    Tue May 14 20:49:02 UTC 2024
      76.2K bytes
      Cache
     
  10. plot_classifier_comparison.rst.txt

    and test part X, y = ds X_train, X_test, y_train, y_test = train_test_split(...Plot the testing points ax.scatter( X_test[:, 0], X_test[:, 1],...
    scikit-learn.org/stable/_sources/auto_examples/classification/plot_classifier_comparison.rst.txt
    Tue May 14 20:49:02 UTC 2024
      7.7K bytes
     
Back to top